Age | Commit message (Collapse) | Author |
|
|
|
added an option to always only show one image in previews
removed duplicate code
|
|
|
|
|
|
refer to it using that
|
|
|
|
|
|
[Hypernetworks] Add a feature to use dropout / more activation functions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getting no gradients
|
|
|
|
|
|
|
|
|
|
|
|
|
|
added support for extensions
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add refresh button for aesthetic embeddings
add aesthetic params to images' infotext
|
|
|
|
|
|
and trained for hypernets
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Currently, trying to perform CLIP interrogation on a CPU fails, saying:
```
RuntimeError: "slow_conv2d_cpu" not implemented for 'Half'
```
This merge request fixes this issue by detecting whether the target
device is CPU and, if so, force-enabling `--no-half` and passing
`device="cpu"` to `clip.load()` (which then does some extra tricks to
ensure it works correctly on CPU).
|