Update README.md
Browse files
README.md
CHANGED
@@ -18,13 +18,12 @@ It can generate images in various artistic styles learned from WikiArt.
|
|
18 |
- **Funded by [optional]:** N/A
|
19 |
- **Shared by [optional]:** potatopizza
|
20 |
- **Model type:** Text-to-Image
|
21 |
-
- **Language(s) (NLP):** N/A (this is a text-to-image generation model)
|
22 |
- **License:** [CreativeML Open RAIL-M](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
|
23 |
- **Finetuned from model:** [CompVis/stable-diffusion-v1-4](https://huggingface.co/CompVis/stable-diffusion-v1-4)
|
24 |
|
25 |
### Model Sources
|
26 |
|
27 |
-
- **Repository (Hugging Face):** [YourUsername/Stable-Diffusion-v1-4-wikiart](https://huggingface.co/
|
28 |
|
29 |
## Uses
|
30 |
|
@@ -39,6 +38,13 @@ It can generate images in various artistic styles learned from WikiArt.
|
|
39 |
- The generated images might reflect biases present in the WikiArt dataset (art style bias, cultural bias, etc.).
|
40 |
- Potential misuse for generating disallowed content (users should comply with the usage policy).
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
## How to Get Started with the Model
|
43 |
|
44 |
Use Model code:
|
@@ -47,7 +53,7 @@ Use Model code:
|
|
47 |
from diffusers import StableDiffusionPipeline
|
48 |
import torch
|
49 |
|
50 |
-
model_id = "
|
51 |
pipe = StableDiffusionPipeline.from_pretrained(
|
52 |
model_id,
|
53 |
torch_dtype=torch.float16
|
|
|
18 |
- **Funded by [optional]:** N/A
|
19 |
- **Shared by [optional]:** potatopizza
|
20 |
- **Model type:** Text-to-Image
|
|
|
21 |
- **License:** [CreativeML Open RAIL-M](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
|
22 |
- **Finetuned from model:** [CompVis/stable-diffusion-v1-4](https://huggingface.co/CompVis/stable-diffusion-v1-4)
|
23 |
|
24 |
### Model Sources
|
25 |
|
26 |
+
- **Repository (Hugging Face):** [YourUsername/Stable-Diffusion-v1-4-wikiart](https://huggingface.co/potatopizza/Stable-Diffusion-v1-4-wikiart)
|
27 |
|
28 |
## Uses
|
29 |
|
|
|
38 |
- The generated images might reflect biases present in the WikiArt dataset (art style bias, cultural bias, etc.).
|
39 |
- Potential misuse for generating disallowed content (users should comply with the usage policy).
|
40 |
|
41 |
+
## Example Inference Result
|
42 |
+
|
43 |
+
Below is an example image generated using the prompt:
|
44 |
+
**A painting of the Eiffel Tower in the style of Eric Fischl.**
|
45 |
+
|
46 |
+

|
47 |
+
|
48 |
## How to Get Started with the Model
|
49 |
|
50 |
Use Model code:
|
|
|
53 |
from diffusers import StableDiffusionPipeline
|
54 |
import torch
|
55 |
|
56 |
+
model_id = "potatopizza/Stable-Diffusion-v1-4-wikiart"
|
57 |
pipe = StableDiffusionPipeline.from_pretrained(
|
58 |
model_id,
|
59 |
torch_dtype=torch.float16
|