Results 543 comments of ahrm

> Is AppImage supposed to be self contained? Yes. Which distro are you using?

I use this snippet for erasing (I have also added an erase button to call this): ```py def erase_selection(b, size=1): x0, y0 = b.cursor x1 = x0 + int(b.selection_size *...

You need to modify `diffusionserver.py` to create your own model.

I don't think it is as simple as replacing a `.ckpt` file.

As the title suggests, you need to install pytorch with cuda enabled (after installing cuda itself of course).

It is not enough for pytorch and cuda to be installed. **You need to install the cuda version of pytorch**. Automatic111 creates its own virtual environment, so it doesn't affect...

In order to test if you have pytorch with cuda available, you can run the `python` command and then enter: ``` import torch print(torch.cuda.is_available()) ``` Note that the tutorial video...

Don't create a new environment, install it globally, or alternatively you can switch to the environment that you created in visual studio and presumably already has torch installed.

Well our project uses the default SD installation that you would have if you run almost any other notebook. It is webui that is doing its own thing.

You could run a your own server locally which handles `/generate`, `/inpaint`, and `/reimagine` post requests with the appropriate response. (See `diffusionserver.py` for an example). It is not going to...