MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / denoise_from_velocity

Function denoise_from_velocity

src/framework/sampling/diffusion_math.cpp:195–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195std::vector<float> denoise_from_velocity(
196 const std::vector<float> & x,
197 const std::vector<float> & velocity,
198 float t) {
199 return euler_step(x, velocity, t);
200}
201
202std::vector<float> renoise(
203 const std::vector<float> & denoised,

Callers 2

generate_latentsMethod · 0.85
test_velocity_and_stepsFunction · 0.85

Calls 1

euler_stepFunction · 0.85

Tested by 1

test_velocity_and_stepsFunction · 0.68