Update README.md
Browse files
README.md
CHANGED
@@ -5,30 +5,43 @@ license: creativeml-openrail-m
|
|
5 |
|
6 |
This model was trained based off of https://huggingface.co/runwayml/stable-diffusion-v1-5 for 15000 steps using 2.5k images from https://dune.fandom.com/wiki/Dune_Wiki
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"bene gesserit"
|
9 |
-

|
22 |
|
23 |
"taylor swift"
|
|
|
24 |
|
25 |
-

|
26 |
|
27 |
"yoda"
|
|
|
28 |
|
29 |
-

|
30 |
-
|
31 |
-
"shai hulud"
|
32 |
|
33 |
|
34 |
-
|
|
|
|
5 |
|
6 |
This model was trained based off of https://huggingface.co/runwayml/stable-diffusion-v1-5 for 15000 steps using 2.5k images from https://dune.fandom.com/wiki/Dune_Wiki
|
7 |
|
8 |
+
|
9 |
+
Usage:
|
10 |
+
|
11 |
+
```
|
12 |
+
from diffusers import StableDiffusionPipeline
|
13 |
+
import torch
|
14 |
+
|
15 |
+
pipe=StableDiffusionPipeline.from_pretrained("nagolinc/sd-dune",dtype=torch.float16)
|
16 |
+
pipe.to("cuda")
|
17 |
+
|
18 |
+
image=pipe("shai hulud").images[0]
|
19 |
+
```
|
20 |
+
|
21 |
+
|
22 |
"bene gesserit"
|
23 |
+

|
24 |
|
25 |
"dune"
|
26 |
|
27 |
+

|
28 |
|
|
|
29 |
|
30 |
+
"paul atreides"
|
31 |
+

|
32 |
|
33 |
+
"shai hulud"
|
34 |
+

|
35 |
|
|
|
36 |
|
37 |
"taylor swift"
|
38 |
+

|
39 |
|
|
|
40 |
|
41 |
"yoda"
|
42 |
+

|
43 |
|
|
|
|
|
|
|
44 |
|
45 |
|
46 |
+
"sandworm"
|
47 |
+

|