diffusers support (#2)
Browse files- diffusers support (96141cc0aa9646caf0f83acf1f0459bcbb5239d1)
- diffusers support (885d93fcbb82e254527d73c27d838039e555ae87)
- model_index.json +2 -2
- scheduler/scheduler_config.json +5 -17
- vae/config.json +3 -4
model_index.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_class_name": "
|
3 |
"_diffusers_version": "0.27.0.dev0",
|
4 |
"feature_extractor": [
|
5 |
null,
|
@@ -12,7 +12,7 @@
|
|
12 |
],
|
13 |
"scheduler": [
|
14 |
"diffusers",
|
15 |
-
"
|
16 |
],
|
17 |
"text_encoder": [
|
18 |
"transformers",
|
|
|
1 |
{
|
2 |
+
"_class_name": "StableDiffusionXLPipeline",
|
3 |
"_diffusers_version": "0.27.0.dev0",
|
4 |
"feature_extractor": [
|
5 |
null,
|
|
|
12 |
],
|
13 |
"scheduler": [
|
14 |
"diffusers",
|
15 |
+
"EDMEulerScheduler"
|
16 |
],
|
17 |
"text_encoder": [
|
18 |
"transformers",
|
scheduler/scheduler_config.json
CHANGED
@@ -1,22 +1,10 @@
|
|
1 |
{
|
2 |
-
"_class_name": "
|
3 |
"_diffusers_version": "0.27.0.dev0",
|
4 |
-
"beta_end": 0.012,
|
5 |
-
"beta_schedule": "scaled_linear",
|
6 |
-
"beta_start": 0.00085,
|
7 |
-
"clip_sample": false,
|
8 |
-
"interpolation_type": "linear",
|
9 |
"num_train_timesteps": 1000,
|
10 |
"prediction_type": "epsilon",
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"sigma_min": null,
|
16 |
-
"skip_prk_steps": true,
|
17 |
-
"steps_offset": 1,
|
18 |
-
"timestep_spacing": "leading",
|
19 |
-
"timestep_type": "discrete",
|
20 |
-
"trained_betas": null,
|
21 |
-
"use_karras_sigmas": false
|
22 |
}
|
|
|
1 |
{
|
2 |
+
"_class_name": "EDMEulerScheduler",
|
3 |
"_diffusers_version": "0.27.0.dev0",
|
|
|
|
|
|
|
|
|
|
|
4 |
"num_train_timesteps": 1000,
|
5 |
"prediction_type": "epsilon",
|
6 |
+
"rho": 7.0,
|
7 |
+
"sigma_data": 0.5,
|
8 |
+
"sigma_max": 80.0,
|
9 |
+
"sigma_min": 0.002
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
}
|
vae/config.json
CHANGED
@@ -21,24 +21,23 @@
|
|
21 |
"norm_num_groups": 32,
|
22 |
"out_channels": 3,
|
23 |
"sample_size": 1024,
|
24 |
-
"scaling_factor": 0.13025,
|
25 |
"up_block_types": [
|
26 |
"UpDecoderBlock2D",
|
27 |
"UpDecoderBlock2D",
|
28 |
"UpDecoderBlock2D",
|
29 |
"UpDecoderBlock2D"
|
30 |
],
|
31 |
-
"
|
32 |
-1.6574,
|
33 |
1.886,
|
34 |
-1.383,
|
35 |
2.5155
|
36 |
],
|
37 |
-
"
|
38 |
8.4927,
|
39 |
5.9022,
|
40 |
6.5498,
|
41 |
5.2299
|
42 |
],
|
43 |
-
"
|
44 |
}
|
|
|
21 |
"norm_num_groups": 32,
|
22 |
"out_channels": 3,
|
23 |
"sample_size": 1024,
|
|
|
24 |
"up_block_types": [
|
25 |
"UpDecoderBlock2D",
|
26 |
"UpDecoderBlock2D",
|
27 |
"UpDecoderBlock2D",
|
28 |
"UpDecoderBlock2D"
|
29 |
],
|
30 |
+
"latents_mean": [
|
31 |
-1.6574,
|
32 |
1.886,
|
33 |
-1.383,
|
34 |
2.5155
|
35 |
],
|
36 |
+
"latents_std": [
|
37 |
8.4927,
|
38 |
5.9022,
|
39 |
6.5498,
|
40 |
5.2299
|
41 |
],
|
42 |
+
"scaling_factor": 0.5
|
43 |
}
|