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
File size: 702 Bytes
6362de3 490bca8 6362de3 490bca8 6362de3 490bca8 d609aa6 6362de3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | @echo off
echo Activating ComfyUI virtual environment...
REM Active l'environnement virtuel.
call "%~dp0ComfyUI\venv\Scripts\activate.bat"
echo Starting ComfyUI with custom arguments...
REM Se place dans le dossier ComfyUI.
cd "%~dp0ComfyUI"
REM === CORRECTION ===
REM On prépare le chemin de base en s'assurant qu'il n'y a pas de backslash à la fin
REM pour éviter les problèmes d'interprétation des guillemets.
set "BASE_DIR=%~dp0"
if "%BASE_DIR:~-1%"=="\" set "BASE_DIR=%BASE_DIR:~0,-1%"
REM On exécute le script en utilisant la variable de chemin nettoyée.
python main.py --use-sage-attention --disable-smart-memory --base-directory "%BASE_DIR%" --auto-launch
pause |