justinpinkney
commited on
Commit
·
a55bdb1
1
Parent(s):
d1ff731
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1 |
---
|
2 |
license: openrail
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: openrail
|
3 |
---
|
4 |
+
|
5 |
+
## Super Resolution
|
6 |
+
|
7 |
+
I fine tuned a version of Stable Diffusion 1.4 for the task of super-resolution, you can find the [trained model on huggingface hub](https://huggingface.co/lambdalabs/stable-diffusion-super-res) and can run a gradio demo as follows:
|
8 |
+
|
9 |
+
```bash
|
10 |
+
git clone https://github.com/justinpinkney/stable-diffusion.git
|
11 |
+
cd stable-diffusion
|
12 |
+
python -m venv .venv --prompt sd
|
13 |
+
. .venv/bin/activate
|
14 |
+
pip install -U pip
|
15 |
+
pip install -r requirements.txt
|
16 |
+
python scripts/gradio_superres.py
|
17 |
+
```
|
18 |
+
|
19 |
+
Note since I trained this model there is now an 'official' super res model for Stable Diffusion 2 which you might prefer to use.
|
20 |
+
|
21 |
+
Trained by [Justin Pinkney](https://www.justinpinkney.com/) ([@Buntworthy](https://twitter.com/Buntworthy)) at [Lambda Labs](https://lambdalabs.com/).
|