CameronDugan commited on
Commit
3a476f5
1 Parent(s): ea87585

Upload 2 files

Browse files
Files changed (2) hide show
  1. model_index.json +8 -5
  2. scheduler_config.json +18 -0
model_index.json CHANGED
@@ -1,8 +1,11 @@
1
-
2
  {
3
  "_class_name": "DDPMPipeline",
4
- "_diffusers_version": "0.20.0",
5
- "_name_or_path": "output",
6
- "kwargs": [],
7
- "args": []
 
 
 
 
8
  }
 
 
1
  {
2
  "_class_name": "DDPMPipeline",
3
+ "scheduler": [
4
+ "diffusers",
5
+ "DDPMScheduler"
6
+ ],
7
+ "unet": [
8
+ "diffusers",
9
+ "UNet2DModel"
10
+ ]
11
  }
scheduler_config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "DDPMScheduler",
3
+ "_diffusers_version": "0.20.0",
4
+ "beta_end": 0.02,
5
+ "beta_schedule": "linear",
6
+ "beta_start": 0.0001,
7
+ "clip_sample": true,
8
+ "clip_sample_range": 1.0,
9
+ "dynamic_thresholding_ratio": 0.995,
10
+ "num_train_timesteps": 1000,
11
+ "prediction_type": "epsilon",
12
+ "sample_max_value": 1.0,
13
+ "steps_offset": 0,
14
+ "thresholding": false,
15
+ "timestep_spacing": "leading",
16
+ "trained_betas": null,
17
+ "variance_type": "fixed_small"
18
+ }