Fix params bug in diffusion example (#14993)

This commit is contained in:
Aman Gupta 2025-08-01 01:22:58 +08:00 committed by GitHub
parent d6818d06a6
commit 784524053d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ struct common_params_diffusion {
bool visual_mode = false; bool visual_mode = false;
float eps = 0; // epsilon for timesteps float eps = 0; // epsilon for timesteps
int32_t block_length = 32; // block length for generation int32_t block_length = 0; // block length for generation
int32_t algorithm = 4; // default algorithm: low-confidence int32_t algorithm = 4; // default algorithm: low-confidence
float alg_temp = 0.0f; // algorithm temperature float alg_temp = 0.0f; // algorithm temperature