Instructions to use EngineerGL/DreamCoil-Anima with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Cosmos
How to use EngineerGL/DreamCoil-Anima with Cosmos:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -31,7 +31,7 @@ Generated with this model:
|
|
| 31 |
|
| 32 |
To use this hybrid, you need all three split components (which are already packed in this repository):
|
| 33 |
|
| 34 |
-
1. **Diffusion Model (UNET):** `models/diffusion_models/
|
| 35 |
2. **Text Encoder (CLIP):** `models/text_encoders/qwen_3_06b_base.safetensors` (Qwen 0.6B)
|
| 36 |
3. **VAE:** `models/vae/qwen_image_vae.safetensors` (Qwen VAE)
|
| 37 |
|
|
@@ -63,7 +63,7 @@ REPO_ID = "EngineerGL/DreamCoil-Anima"
|
|
| 63 |
|
| 64 |
print("Downloading model files from Hugging Face...")
|
| 65 |
# This will recreate the correct folder structure inside ComfyUI/models/
|
| 66 |
-
hf_hub_download(repo_id=REPO_ID, filename="diffusion_models/
|
| 67 |
hf_hub_download(repo_id=REPO_ID, filename="text_encoders/qwen_3_06b_base.safetensors", local_dir="./ComfyUI/models")
|
| 68 |
hf_hub_download(repo_id=REPO_ID, filename="vae/qwen_image_vae.safetensors", local_dir="./ComfyUI/models")
|
| 69 |
|
|
|
|
| 31 |
|
| 32 |
To use this hybrid, you need all three split components (which are already packed in this repository):
|
| 33 |
|
| 34 |
+
1. **Diffusion Model (UNET):** `models/diffusion_models/dreamcoil-anima.safetensors` (Custom Civitai Fine-tune)
|
| 35 |
2. **Text Encoder (CLIP):** `models/text_encoders/qwen_3_06b_base.safetensors` (Qwen 0.6B)
|
| 36 |
3. **VAE:** `models/vae/qwen_image_vae.safetensors` (Qwen VAE)
|
| 37 |
|
|
|
|
| 63 |
|
| 64 |
print("Downloading model files from Hugging Face...")
|
| 65 |
# This will recreate the correct folder structure inside ComfyUI/models/
|
| 66 |
+
hf_hub_download(repo_id=REPO_ID, filename="diffusion_models/dreamcoil-anima.safetensors", local_dir="./ComfyUI/models")
|
| 67 |
hf_hub_download(repo_id=REPO_ID, filename="text_encoders/qwen_3_06b_base.safetensors", local_dir="./ComfyUI/models")
|
| 68 |
hf_hub_download(repo_id=REPO_ID, filename="vae/qwen_image_vae.safetensors", local_dir="./ComfyUI/models")
|
| 69 |
|