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-Start-ComfyUI.bat
Browse files
scripts/ComfyUI/UmeAiRT-Start-ComfyUI.bat
CHANGED
|
@@ -16,6 +16,6 @@ set "BASE_DIR=%~dp0"
|
|
| 16 |
if "%BASE_DIR:~-1%"=="\" set "BASE_DIR=%BASE_DIR:~0,-1%"
|
| 17 |
|
| 18 |
REM On exécute le script en utilisant la variable de chemin nettoyée.
|
| 19 |
-
python main.py --use-sage-attention --disable-smart-memory --base-directory "%BASE_DIR%"
|
| 20 |
|
| 21 |
pause
|
|
|
|
| 16 |
if "%BASE_DIR:~-1%"=="\" set "BASE_DIR=%BASE_DIR:~0,-1%"
|
| 17 |
|
| 18 |
REM On exécute le script en utilisant la variable de chemin nettoyée.
|
| 19 |
+
python main.py --use-sage-attention --disable-smart-memory --base-directory "%BASE_DIR%" --auto-launch
|
| 20 |
|
| 21 |
pause
|