pharmapsychotic
commited on
Commit
•
a48e351
1
Parent(s):
33184bf
Update README
Browse files
README.md
CHANGED
@@ -14,14 +14,13 @@ widget:
|
|
14 |
|
15 |
# DreamBooth model for the pssg concept trained by pharmapsychotic
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
20 |
|
21 |
-
|
22 |
|
23 |
-
|
24 |
-
This is a Stable Diffusion model fine-tuned on `sugar glider` AI and photo images for the animal theme. It is based on 16 AI images created by pharmapsychotic with Stable Diffusion and public domain photos.
|
25 |
|
26 |
|
27 |
## Examples
|
@@ -40,10 +39,15 @@ This is a Stable Diffusion model fine-tuned on `sugar glider` AI and photo image
|
|
40 |
|
41 |
## Usage
|
42 |
|
|
|
|
|
43 |
```python
|
44 |
from diffusers import StableDiffusionPipeline
|
45 |
|
46 |
pipeline = StableDiffusionPipeline.from_pretrained('pharma/sugar-glider')
|
47 |
image = pipeline().images[0]
|
48 |
image
|
49 |
-
```
|
|
|
|
|
|
|
|
14 |
|
15 |
# DreamBooth model for the pssg concept trained by pharmapsychotic
|
16 |
|
17 |
+
**Sugar gliders** are adorable creatures! I've never had one as a pet but I've been tempted. Imagine having one in your shirt pocket and feeding it snacks as you work. 😍
|
18 |
|
19 |
+
Anyway, I created a few AI renders of sugar gliders and mixed in with some photos of the critters and trained a model for the [DreamBooth Hackathon](https://huggingface.co/dreambooth-hackathon)! If you enjoy the model or just find the results funny and cute, drop a like on the model!
|
20 |
|
21 |
+
To use the model be sure to include `pssg` in your prompt (PharmapSychotic Sugar Glider) or `pssg sugar glider` for a stronger effect. I recommend using a version of the inference that has cross attention control so you can balance the influence of the sugar glider and the weird scenarios you put him in. I trained to 10,000 steps and it overcooked so dropped back to the 2,500 step checkpoint but still need to boost other things in the prompts like `(((goggles)))` to overcome the default `pssg` influence.
|
22 |
|
23 |
+
See below for usage!
|
|
|
24 |
|
25 |
|
26 |
## Examples
|
|
|
39 |
|
40 |
## Usage
|
41 |
|
42 |
+
#### With Diffusers
|
43 |
+
|
44 |
```python
|
45 |
from diffusers import StableDiffusionPipeline
|
46 |
|
47 |
pipeline = StableDiffusionPipeline.from_pretrained('pharma/sugar-glider')
|
48 |
image = pipeline().images[0]
|
49 |
image
|
50 |
+
```
|
51 |
+
|
52 |
+
#### With SD Web UI
|
53 |
+
To use with SD Web UI download [sugar_gliders_pssg_2500.ckpt](https://huggingface.co/pharma/sugar-glider/resolve/main/sugar_gliders_pssg_2500.ckpt) and put in your models folder.
|