Update README.md
Browse files
README.md
CHANGED
@@ -15,26 +15,18 @@ You can use this with the 🧨Diffusers library from [Hugging Face](https://hugg
|
|
15 |
from diffusers import StableDiffusionXLPipeline
|
16 |
import torch
|
17 |
|
18 |
-
pipeline = StableDiffusionXLPipeline.from_pretrained("
|
19 |
|
20 |
image = pipeline(prompt="a chibi doll").images[0]
|
21 |
image.save("horse.png")
|
22 |
```
|
23 |
|
24 |
-
### Model Details
|
25 |
-
- `train_batch_size`: 1
|
26 |
-
- `gradient_accumulation_steps`: 4
|
27 |
-
- `learning_rate`: 1e-2
|
28 |
-
- `lr_warmup_steps`: 500
|
29 |
-
- `mixed_precision`: "fp16"
|
30 |
-
- `eval_metric`: "mean_squared_error"
|
31 |
-
|
32 |
### Limitations
|
33 |
|
34 |
-
- The model does not achieve perfect photorealism
|
35 |
- The model cannot render legible text
|
36 |
-
|
37 |
### Developed by
|
38 |
-
-
|
39 |
|
40 |
*This model card was written by Noa Roggendorff and is based on the [Stable Diffusion v1-5 Model Card](https://huggingface.co/runwayml/stable-diffusion-v1-5).*
|
|
|
15 |
from diffusers import StableDiffusionXLPipeline
|
16 |
import torch
|
17 |
|
18 |
+
pipeline = StableDiffusionXLPipeline.from_pretrained("glides/ponyxl").to("cuda")
|
19 |
|
20 |
image = pipeline(prompt="a chibi doll").images[0]
|
21 |
image.save("horse.png")
|
22 |
```
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
### Limitations
|
25 |
|
26 |
+
- The model does not achieve perfect drawing photorealism
|
27 |
- The model cannot render legible text
|
28 |
+
|
29 |
### Developed by
|
30 |
+
- PurpleSmartAI
|
31 |
|
32 |
*This model card was written by Noa Roggendorff and is based on the [Stable Diffusion v1-5 Model Card](https://huggingface.co/runwayml/stable-diffusion-v1-5).*
|