dg845 commited on
Commit
daf456c
1 Parent(s): 30ffd81

Upload scheduler_config.json

Browse files

Add new scheduler (change scheduler to better match original UniDiffuser scheduler)

Files changed (1) hide show
  1. scheduler/scheduler_config.json +20 -0
scheduler/scheduler_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DPMSolverMultistepScheduler",
3
+ "_diffusers_version": "0.17.0.dev0",
4
+ "algorithm_type": "dpmsolver++",
5
+ "beta_end": 0.012,
6
+ "beta_schedule": "scaled_linear",
7
+ "beta_start": 0.00085,
8
+ "dynamic_thresholding_ratio": 0.995,
9
+ "lambda_min_clipped": -Infinity,
10
+ "lower_order_final": true,
11
+ "num_train_timesteps": 1000,
12
+ "prediction_type": "epsilon",
13
+ "sample_max_value": 1.0,
14
+ "solver_order": 3,
15
+ "solver_type": "midpoint",
16
+ "thresholding": false,
17
+ "trained_betas": null,
18
+ "use_karras_sigmas": false,
19
+ "variance_type": null
20
+ }