Instructions to use UmeAiRT/ComfyUI-Auto-Installer-Assets with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use UmeAiRT/ComfyUI-Auto-Installer-Assets with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("UmeAiRT/ComfyUI-Auto-Installer-Assets", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Upload UmeAiRT-HIDREAM-Model_downloader.bat
Browse files
scripts/Model_downloader/UmeAiRT-HIDREAM-Model_downloader.bat
CHANGED
|
@@ -79,13 +79,13 @@ if "%DOWNLOAD_GGUF%"=="yes" (
|
|
| 79 |
if /i "%HID_GGUF_CHOICE%"=="A" (
|
| 80 |
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q8_0.gguf?download=true
|
| 81 |
) else if /i "%HID_GGUF_CHOICE%"=="B" (
|
| 82 |
-
curl -L -o "%modelsPath%/unet/hidream-i1-dev-Q5_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q5_K_S.gguf?download=true
|
| 83 |
) else if /i "%HID_GGUF_CHOICE%"=="C" (
|
| 84 |
-
curl -L -o "%modelsPath%/unet/hidream-i1-dev-Q4_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q4_K_S.gguf?download=true
|
| 85 |
) else if /i "%HID_GGUF_CHOICE%"=="D" (
|
| 86 |
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q8_0.gguf?download=true
|
| 87 |
-
curl -L -o "%modelsPath%/unet/hidream-i1-dev-Q5_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q5_K_S.gguf?download=true
|
| 88 |
-
curl -L -o "%modelsPath%/unet/hidream-i1-dev-Q4_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q4_K_S.gguf?download=true
|
| 89 |
)
|
| 90 |
)
|
| 91 |
|
|
|
|
| 79 |
if /i "%HID_GGUF_CHOICE%"=="A" (
|
| 80 |
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q8_0.gguf?download=true
|
| 81 |
) else if /i "%HID_GGUF_CHOICE%"=="B" (
|
| 82 |
+
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q5_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q5_K_S.gguf?download=true
|
| 83 |
) else if /i "%HID_GGUF_CHOICE%"=="C" (
|
| 84 |
+
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q4_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q4_K_S.gguf?download=true
|
| 85 |
) else if /i "%HID_GGUF_CHOICE%"=="D" (
|
| 86 |
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q8_0.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q8_0.gguf?download=true
|
| 87 |
+
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q5_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q5_K_S.gguf?download=true
|
| 88 |
+
curl -L -o "%modelsPath%/unet/HIDREAM/hidream-i1-dev-Q4_K_S.gguf" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/unet/HiDream/hidream-i1-dev-Q4_K_S.gguf?download=true
|
| 89 |
)
|
| 90 |
)
|
| 91 |
|