Update scheduler/scheduler_config.json to include clip_sample option set to false
Browse filesCurrent InvokeAI emits the following deprecation warning:
FutureWarning: The configuration file of this scheduler: DDIMScheduler {
"_class_name": "DDIMScheduler",
"_diffusers_version": "0.14.0",
"beta_end": 0.012,
"beta_schedule": "scaled_linear",
"beta_start": 0.00085,
"clip_sample": true,
"num_train_timesteps": 1000,
"prediction_type": "epsilon",
"set_alpha_to_one": false,
"skip_prk_steps": true,
"steps_offset": 1,
"trained_betas": null
}
has not set the configuration `clip_sample`. `clip_sample` should be set to False in the configuration file. Please make sure to update the config accordingly as not setting `clip_sample` in the config might lead to incorrect results in future versions. If you have downloaded this checkpoint from the Hugging Face Hub, it would be very nice if you could open a Pull request for the `scheduler/scheduler_config.json` file
deprecate("clip_sample not set", "1.0.0", deprecation_message, standard_warn=False)
@@ -8,5 +8,6 @@
|
|
8 |
"set_alpha_to_one": false,
|
9 |
"skip_prk_steps": true,
|
10 |
"steps_offset": 1,
|
11 |
-
"trained_betas": null
|
|
|
12 |
}
|
|
|
8 |
"set_alpha_to_one": false,
|
9 |
"skip_prk_steps": true,
|
10 |
"steps_offset": 1,
|
11 |
+
"trained_betas": null,
|
12 |
+
"clip_sample": false
|
13 |
}
|