Instructions to use wiikoo/ComfyUI-Models-Backup-20250821 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use wiikoo/ComfyUI-Models-Backup-20250821 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("wiikoo/ComfyUI-Models-Backup-20250821", 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 custom_nodes/comfyui_controlnet_aux/src/custom_controlnet_aux/uniformer/configs/_base_/datasets/pascal_voc12_aug.py with huggingface_hub
Browse files
custom_nodes/comfyui_controlnet_aux/src/custom_controlnet_aux/uniformer/configs/_base_/datasets/pascal_voc12_aug.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
_base_ = './pascal_voc12.py'
|
| 2 |
+
# dataset settings
|
| 3 |
+
data = dict(
|
| 4 |
+
train=dict(
|
| 5 |
+
ann_dir=['SegmentationClass', 'SegmentationClassAug'],
|
| 6 |
+
split=[
|
| 7 |
+
'ImageSets/Segmentation/train.txt',
|
| 8 |
+
'ImageSets/Segmentation/aug.txt'
|
| 9 |
+
]))
|