Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Hugging Face's logo
|
2 |
+
Hugging Face
|
3 |
+
Search models, datasets, users...
|
4 |
+
Models
|
5 |
+
Datasets
|
6 |
+
Spaces
|
7 |
+
Docs
|
8 |
+
Solutions
|
9 |
+
Pricing
|
10 |
+
|
11 |
+
|
12 |
---
|
13 |
+
language:
|
14 |
+
- en
|
15 |
+
license: other
|
16 |
+
tags:
|
17 |
+
- stable-diffusion
|
18 |
+
- stable-diffusion-diffusers
|
19 |
+
- text-to-image
|
20 |
+
- photorealistic
|
21 |
+
- photoreal
|
22 |
+
- diffusers
|
23 |
+
inference: true
|
24 |
---
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
Make people look like they have Juggalo Face Makeup
|
29 |
+
|
30 |
+
|
31 |
+
### 🧨 Diffusers
|
32 |
+
|
33 |
+
This model can be used just like any other Stable Diffusion model. For more information,
|
34 |
+
please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
35 |
+
|
36 |
+
```python
|
37 |
+
from diffusers import StableDiffusionPipeline
|
38 |
+
import torch
|
39 |
+
model_id = "dreamlike-art/dreamlike-photoreal-1.0"
|
40 |
+
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
41 |
+
pipe = pipe.to("cuda")
|
42 |
+
prompt = "caucasian creative man wearing a sweater, sitting, on an icelandic beach"
|
43 |
+
image = pipe(prompt).images[0]
|
44 |
+
image.save("./result.jpg")
|
45 |
+
```
|
46 |
+
|
47 |
+
# License
|
48 |
+
|
49 |
+
This model is licesed under a **modified** CreativeML OpenRAIL-M license.
|
50 |
+
|
51 |
+
- **You can't host the model or its derivatives on websites/apps/etc., from which you earn, or plan to earn revenue. If you want to, please email us at contact@dreamlike.art**
|
52 |
+
- **You are free to host the model or its derivatives on non-commercial websites/apps/etc. Please state the full model name (Dreamlike Photoreal) and include a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-photoreal-1.0)**
|
53 |
+
- **You are free to use the model or its derivatives for commercial purposes in teams of 10 or less**
|
54 |
+
- You can't use the model to deliberately produce nor share illegal or harmful outputs or content
|
55 |
+
- The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
|
56 |
+
- You may re-distribute the weights. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the **modified** CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here: https://huggingface.co/dreamlike-art/dreamlike-photoreal-1.0/blob/main/LICENSE.md
|
57 |
+
|