README.md 6.61 KB
Newer Older
comfyanonymous's avatar
comfyanonymous committed
1
2
3
4
5
6
ComfyUI
=======
A powerful and modular stable diffusion GUI.
-----------
![ComfyUI Screenshot](comfyui_screenshot.png)

7
8
9
10
11
12
13
This ui will let you design and execute advanced stable diffusion pipelines using a graph/nodes/flowchart based interface. For some workflow examples and see what ComfyUI can do you can check out:
### [ComfyUI Examples](https://comfyanonymous.github.io/ComfyUI_examples/)

## Features
- Nodes/graph/flowchart interface to experiment and create complex Stable Diffusion workflows without needing to code anything.
- Fully supports SD1.x and SD2.x
- Asynchronous Queue system
comfyanonymous's avatar
Typo.  
comfyanonymous committed
14
- Many optimizations: Only re-executes the parts of the workflow that changes between executions.
15
16
- Command line option: ```--lowvram``` to make it work on GPUs with less than 3GB vram (enabled automatically on GPUs with low vram)
- Works even if you don't have a GPU with: ```--cpu``` (slow)
17
18
- Can load both ckpt and safetensors models/checkpoints. Standalone VAEs and CLIP models.
- Embeddings/Textual inversion
comfyanonymous's avatar
comfyanonymous committed
19
- [Loras (regular and locon)](https://comfyanonymous.github.io/ComfyUI_examples/lora/)
20
21
22
23
- Loading full workflows (with seeds) from generated PNG files.
- Saving/Loading workflows as Json files.
- Nodes interface can be used to create complex workflows like one for [Hires fix](https://comfyanonymous.github.io/ComfyUI_examples/2_pass_txt2img/) or much more advanced ones.
- [Area Composition](https://comfyanonymous.github.io/ComfyUI_examples/area_composition/)
comfyanonymous's avatar
comfyanonymous committed
24
- [Inpainting](https://comfyanonymous.github.io/ComfyUI_examples/inpaint/) with both regular and inpainting models.
comfyanonymous's avatar
comfyanonymous committed
25
- [ControlNet and T2I-Adapter](https://comfyanonymous.github.io/ComfyUI_examples/controlnet/)
26
- [Upscale Models (ESRGAN, ESRGAN variants, SwinIR, Swin2SR, etc...)](https://comfyanonymous.github.io/ComfyUI_examples/upscale_models/)
27
28
29
30
- Starts up very fast.
- Works fully offline: will never download anything.

Workflow examples can be found on the [Examples page](https://comfyanonymous.github.io/ComfyUI_examples/)
comfyanonymous's avatar
comfyanonymous committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44

# Installing

Git clone this repo.

Put your SD checkpoints (the huge ckpt/safetensors files) in: models/checkpoints

Put your VAE in: models/vae

At the time of writing this pytorch has issues with python versions higher than 3.10 so make sure your python/pip versions are 3.10.

### AMD
AMD users can install rocm and pytorch with pip if you don't have it already installed:

45
```pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.2```
comfyanonymous's avatar
comfyanonymous committed
46
47
48

### NVIDIA

49
50
51
52
53
54
Nvidia users should install torch using this command:

```pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117```

Nvidia users should also install Xformers for a speed boost but can still run the software without it.

55
56
```pip install xformers```

57
58
59
60
61
62
63
#### Troubleshooting

If you get the "Torch not compiled with CUDA enabled" error, uninstall torch with:

```pip uninstall torch```

And install it again with the command above.
comfyanonymous's avatar
comfyanonymous committed
64
65
66

### Dependencies

67
Install the dependencies by opening your terminal inside the ComfyUI folder and:
comfyanonymous's avatar
comfyanonymous committed
68
69
70

```pip install -r requirements.txt```

71
72
73
After this you should have everything installed and can proceed to running ComfyUI.


comfyanonymous's avatar
comfyanonymous committed
74
### I already have another UI for Stable Diffusion installed do I really have to install all of these dependencies?
75
76
77
78
79
80
81
82
83
84
85
86

You don't. If you have another UI installed and working with it's own python venv you can use that venv to run ComfyUI. You can open up your favorite terminal and activate it:

```source path_to_other_sd_gui/venv/bin/activate```

or on Windows:

With Powershell: ```"path_to_other_sd_gui\venv\Scripts\Activate.ps1"```

With cmd.exe: ```"path_to_other_sd_gui\venv\Scripts\activate.bat"```

And then you can use that terminal to run Comfyui without installing any dependencies. Note that the venv folder might be called something else depending on the SD UI.
comfyanonymous's avatar
comfyanonymous committed
87
88
89
90
91
92


# Running

```python main.py```

93
94
95
96
97
### For AMD 6700, 6600 and maybe others

Try running it with this command if you have issues:

```HSA_OVERRIDE_GFX_VERSION=10.3.0 python main.py```
comfyanonymous's avatar
comfyanonymous committed
98
99
100
101
102
103
104
105
106
107
108

# Notes

Only parts of the graph that have an output with all the correct inputs will be executed.

Only parts of the graph that change from each execution to the next will be executed, if you submit the same graph twice only the first will be executed. If you change the last part of the graph only the part you changed and the part that depends on it will be executed.

Dragging a generated png on the webpage or loading one will give you the full workflow including seeds that were used to create it.

You can use () to change emphasis of a word or phrase like: (good code:1.2) or (bad code:0.8). The default emphasis for () is 1.1. To use () characters in your actual prompt escape them like \\( or \\).

109
110
You can use {day|night}, for wildcard/dynamic prompts. With this syntax "{wild|card|test}" will be randomly replaced by either "wild", "card" or "test" by the frontend every time you queue the prompt. To use {} characters in your actual prompt escape them like: \\{ or \\}.

111
112
113
114
To use a textual inversion concepts/embeddings in a text prompt put them in the models/embeddings directory and use them in the CLIPTextEncode node like this (you can omit the .pt extension):

```embedding:embedding_filename.pt```

comfyanonymous's avatar
comfyanonymous committed
115
116
### Colab Notebook

117
To run it on colab or paperspace you can use my [Colab Notebook](notebooks/comfyui_colab.ipynb) here: [Link to open with google colab](https://colab.research.google.com/github/comfyanonymous/ComfyUI/blob/master/notebooks/comfyui_colab.ipynb)
comfyanonymous's avatar
comfyanonymous committed
118

comfyanonymous's avatar
comfyanonymous committed
119
120
121
122
123
124
125
126
127
128
129
### Fedora

To get python 3.10 on fedora:
```dnf install python3.10```

Then you can:

```python3.10 -m ensurepip```

This will let you use: pip3.10 to install all the dependencies.

comfyanonymous's avatar
comfyanonymous committed
130
131
132
133
134
135
136
137
## How to increase generation speed?

The fp16 model configs in the CheckpointLoader can be used to load them in fp16 mode, depending on your GPU this will increase your gen speed by a significant amount.

You can also set this command line setting to disable the upcasting to fp32 in some cross attention operations which will increase your speed. Note that this will very likely give you black images on SD2.x models.

```--dont-upcast-attention```

138
139
## Support and dev channel

140
[Matrix space: #comfyui_space:matrix.org](https://app.element.io/#/room/%23comfyui_space%3Amatrix.org) (it's like discord but open source).
comfyanonymous's avatar
comfyanonymous committed
141
142
143
144
145
146
147
148
149
150

# QA

### Why did you make this?

I wanted to learn how Stable Diffusion worked in detail. I also wanted something clean and powerful that would let me experiment with SD without restrictions.

### Who is this for?

This is for anyone that wants to make complex workflows with SD or that wants to learn more how SD works. The interface follows closely how SD works and the code should be much more simple to understand than other SD UIs.