Guizmus commited on
Commit
5e924dd
1 Parent(s): f82be1e

Upload 3 files

Browse files
Files changed (3) hide show
  1. PoWStyle-UnderwaterWorlds.zip +3 -0
  2. README.md +93 -0
  3. showcase.jpg +0 -0
PoWStyle-UnderwaterWorlds.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e77bfb8f659b11b1572a70335266a1f6037db08df5762cfbbb06129d0b04e023
3
+ size 54924513
README.md CHANGED
@@ -1,3 +1,96 @@
1
  ---
 
 
2
  license: creativeml-openrail-m
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: creativeml-openrail-m
5
+ thumbnail: "https://huggingface.co/Guizmus/PoW_UNDERWATER-WORLDS/resolve/main/showcase.jpg"
6
+ tags:
7
+ - stable-diffusion
8
+ - text-to-image
9
+ - image-to-image
10
  ---
11
+ # PoW : UNDERWATER WORLDS
12
+
13
+ ![Showcase](https://huggingface.co/Guizmus/PoW_UNDERWATER-WORLDS/resolve/main/showcase.jpg)
14
+
15
+ ## Theme
16
+
17
+ ## Model description
18
+
19
+ This is a model related to the "Picture of the Week" contest on Stable Diffusion discord.
20
+
21
+ I try to make a model out of all the submission for people to continue enjoy the theme after the even, and see a little of their designs in other people's creations. The token stays "PoW Style" and I balance the learning on the low side, so that it doesn't just replicate creations.
22
+
23
+ The total dataset is made of 38 pictures. It was trained on [Stable diffusion 1.5](https://huggingface.co/runwayml/stable-diffusion-v1-5). I used [EveryDream](https://github.com/victorchall/EveryDream2trainer) to do the training, 100 total repeat per picture over 50 epochs. The pictures were tagged using the token "PoW Style", and the username on discord followed by the userID. The dataset is provided below.
24
+
25
+ The recommended sampling is k_Euler_a or DPM++ 2M Karras on 20 steps, CFGS 7.5 .
26
+
27
+ ## Trained tokens
28
+
29
+ * PoW Style
30
+ * sometimes8916
31
+ * 526christian2526
32
+ * Akumetsu9719982
33
+ * AndreTheApache9587
34
+ * bitspirit31653
35
+ * bWm_nubby6416
36
+ * crazykazoo2431
37
+ * Eppinette-Chi6220
38
+ * espasmo9486
39
+ * flowwolf4607
40
+ * Guizmus7459
41
+ * H20_Dancing8979
42
+ * Horvallis7915
43
+ * Jeremy6194
44
+ * JRW19948464
45
+ * Junglerally3955
46
+ * Max Headroom6734
47
+ * Meezy1963
48
+ * millennium_gun6377
49
+ * Munkyfoot7944
50
+ * Nerfgun37508
51
+ * NicoGJ2781
52
+ * NoOfTheBeast8209
53
+ * Omnia2931
54
+ * owleye1290
55
+ * Phaff1970
56
+ * piscabo8649
57
+ * Ras6722
58
+ * ResidentChiefNZ6989
59
+ * Rhapsody8685
60
+ * Satyam_SSJ107387
61
+ * tazi2574
62
+ * Trash--Panda6213
63
+ * valanya6869
64
+ * vcm077281
65
+ * Vil0404
66
+ * wpatzz5836
67
+ * xThIsIsBoToXx8765
68
+
69
+ ## Download links
70
+
71
+ [SafeTensors](https://huggingface.co/Guizmus/PoW_UNDERWATER-WORLDS/resolve/main/PoWStyle-UnderwaterWorlds.safetensors)
72
+
73
+ [CKPT](https://huggingface.co/Guizmus/PoW_UNDERWATER-WORLDS/resolve/main/PoWStyle-UnderwaterWorlds.ckpt)
74
+
75
+ [Dataset](https://huggingface.co/Guizmus/PoW_UNDERWATER-WORLDS/resolve/main/PoWStyle-UnderwaterWorlds.zip)
76
+
77
+ ## 🧨 Diffusers
78
+
79
+ This model can be used just like any other Stable Diffusion model. For more information,
80
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
81
+
82
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
83
+
84
+ ```python
85
+ from diffusers import StableDiffusionPipeline
86
+ import torch
87
+
88
+ model_id = "Guizmus/PoW_UNDERWATER-WORLDS"
89
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
90
+ pipe = pipe.to("cuda")
91
+
92
+ prompt = "PoW Style AndreTheApache9587"
93
+ image = pipe(prompt).images[0]
94
+
95
+ image.save("./PoWStyle.png")
96
+ ```
showcase.jpg ADDED