Upload config.json with huggingface_hub
Browse files- config.json +30 -0
config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "DiffusionPipeline",
|
| 3 |
+
"_name_or_path": "ssbtech/models-part1",
|
| 4 |
+
"pipeline_tag": "image-to-video",
|
| 5 |
+
"model_type": "image-to-video",
|
| 6 |
+
"framework": "pytorch",
|
| 7 |
+
"torch_dtype": "float16",
|
| 8 |
+
"requires_safetensors": true,
|
| 9 |
+
|
| 10 |
+
"components": {
|
| 11 |
+
"vae": "AutoencoderKL",
|
| 12 |
+
"unet": "UNet3DConditionModel",
|
| 13 |
+
"text_encoder": "CLIPTextModel",
|
| 14 |
+
"tokenizer": "CLIPTokenizer",
|
| 15 |
+
"motion_module": "MotionModule",
|
| 16 |
+
"scheduler": "DPMSolverMultistepScheduler"
|
| 17 |
+
},
|
| 18 |
+
|
| 19 |
+
"inference": {
|
| 20 |
+
"task": "image-to-video",
|
| 21 |
+
"example_inputs": {
|
| 22 |
+
"prompt": "A man with short gray hair plays a red electric guitar.",
|
| 23 |
+
"image": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png"
|
| 24 |
+
}
|
| 25 |
+
},
|
| 26 |
+
|
| 27 |
+
"base_model": "ssbtech/models-part1",
|
| 28 |
+
"custom_pipeline": "image_to_video",
|
| 29 |
+
"revision": "main"
|
| 30 |
+
}
|