Upload config.json
#1
by amritagopi - opened
- config.json +38 -0
config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "StableDiffusionPipeline",
|
| 3 |
+
"_diffusers_version": "0.24.0",
|
| 4 |
+
"model_type": "stable-diffusion",
|
| 5 |
+
"feature_extractor": {
|
| 6 |
+
"type": "CLIPFeatureExtractor",
|
| 7 |
+
"library": "transformers"
|
| 8 |
+
},
|
| 9 |
+
"image_encoder": {
|
| 10 |
+
"type": "ImageEncoder",
|
| 11 |
+
"library": null
|
| 12 |
+
},
|
| 13 |
+
"requires_safety_checker": true,
|
| 14 |
+
"safety_checker": {
|
| 15 |
+
"type": "StableDiffusionSafetyChecker",
|
| 16 |
+
"library": "stable_diffusion"
|
| 17 |
+
},
|
| 18 |
+
"scheduler": {
|
| 19 |
+
"type": "PNDMScheduler",
|
| 20 |
+
"library": "diffusers"
|
| 21 |
+
},
|
| 22 |
+
"text_encoder": {
|
| 23 |
+
"type": "CLIPTextModel",
|
| 24 |
+
"library": "transformers"
|
| 25 |
+
},
|
| 26 |
+
"tokenizer": {
|
| 27 |
+
"type": "CLIPTokenizer",
|
| 28 |
+
"library": "transformers"
|
| 29 |
+
},
|
| 30 |
+
"unet": {
|
| 31 |
+
"type": "UNet2DConditionModel",
|
| 32 |
+
"library": "diffusers"
|
| 33 |
+
},
|
| 34 |
+
"vae": {
|
| 35 |
+
"type": "AutoencoderKL",
|
| 36 |
+
"library": "diffusers"
|
| 37 |
+
}
|
| 38 |
+
}
|