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-LTXV-Model_downloader.bat
Browse files
scripts/Model_downloader/UmeAiRT-LTXV-Model_downloader.bat
CHANGED
|
@@ -68,7 +68,7 @@ set /p "LTXV_GGUF_CHOICE=Enter your choice (A,B,C,D or E) and press Enter: "
|
|
| 68 |
|
| 69 |
if "%DOWNLOAD%"=="yes" (
|
| 70 |
echo [33mDownloading checkpoint models file...[0m
|
| 71 |
-
powershell -NoProfile -Command "$p = Join-Path $env:modelsPath 'checkpoints\
|
| 72 |
if /i "%CHOICE%"=="A" (
|
| 73 |
echo 13B Model :
|
| 74 |
curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors?download=true
|
|
|
|
| 68 |
|
| 69 |
if "%DOWNLOAD%"=="yes" (
|
| 70 |
echo [33mDownloading checkpoint models file...[0m
|
| 71 |
+
powershell -NoProfile -Command "$p = Join-Path $env:modelsPath 'checkpoints\LTXV'; if (-Not (Test-Path $p)) { New-Item -ItemType Directory -Path $p | Out-Null }"
|
| 72 |
if /i "%CHOICE%"=="A" (
|
| 73 |
echo 13B Model :
|
| 74 |
curl -L -o "%modelsPath%/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/models/checkpoints/LTXV/ltxv-13b-0.9.7-dev.safetensors?download=true
|