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 Install-ComfyUI.ps1
Browse files
scripts/ComfyUI/Install-ComfyUI.ps1
CHANGED
|
@@ -372,7 +372,7 @@ foreach ($pack in $modelPacks) {
|
|
| 372 |
if ($choice -eq 'Y' -or $choice -eq 'y') {
|
| 373 |
Write-Log " - Launching downloader for $($pack.Name) models..." -Color Green
|
| 374 |
# Exécute le script PowerShell de téléchargement
|
| 375 |
-
& $scriptPath
|
| 376 |
$validInput = $true
|
| 377 |
} elseif ($choice -eq 'N' -or $choice -eq 'n') {
|
| 378 |
Write-Log " - Skipping download for $($pack.Name) models." -Color Gray
|
|
|
|
| 372 |
if ($choice -eq 'Y' -or $choice -eq 'y') {
|
| 373 |
Write-Log " - Launching downloader for $($pack.Name) models..." -Color Green
|
| 374 |
# Exécute le script PowerShell de téléchargement
|
| 375 |
+
& $scriptPath -InstallPath $InstallPath
|
| 376 |
$validInput = $true
|
| 377 |
} elseif ($choice -eq 'N' -or $choice -eq 'n') {
|
| 378 |
Write-Log " - Skipping download for $($pack.Name) models." -Color Gray
|