GreyModel commited on
Commit
faf2920
·
1 Parent(s): 03d0d67

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +105 -15
README.md CHANGED
@@ -1,21 +1,111 @@
1
- ---
2
- language:
3
- - en
4
- tags:
5
- - stable-diffusion
6
- - text-to-image
7
- license: openrail
8
- ---
9
- SlateModel is a grey model project built upon Stable Diffusion 2.1 768x.
10
 
11
- <b>Imporatant: Whether choosing ckpt or safetensors version, you will require the yaml inference file for webui use.<br/>
12
- Black Images?:</b> you must use either the <i>--no-half</i> switch in webui startup, or, use <i>--xformers</i> (xformers should be much faster).
 
 
 
 
 
 
 
 
 
 
13
 
14
- This model is provided as part of the GreyModel project.
 
 
 
 
 
15
 
16
- The GreyModel is a community driven project to attempt to make a Stable Diffusion model that is trained upon the light and the dark that makes up humanity.
 
 
 
 
17
 
18
- The model is powered by community effort to gather, caption, and enchance data.
 
 
 
19
 
 
 
 
 
20
 
21
- #Join the discord at https://discord.gg/mhvucN4cDq
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
 
 
 
 
 
 
 
3
 
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Slate Model - HuggingFace Repository</title>
8
+ <style>
9
+ body {
10
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
11
+ background-color: #1d1d1d;
12
+ color: #f0f0f0;
13
+ margin: 0;
14
+ padding: 1rem;
15
+ }
16
 
17
+ h1 {
18
+ text-align: center;
19
+ font-size: 3rem;
20
+ margin-bottom: 1rem;
21
+ color: #e91e63;
22
+ }
23
 
24
+ h2 {
25
+ font-size: 2rem;
26
+ margin-top: 2em;
27
+ color: #ffc107;
28
+ }
29
 
30
+ ul {
31
+ list-style-type: none;
32
+ padding-left: 1.5em;
33
+ }
34
 
35
+ li {
36
+ margin-bottom: 0.5em;
37
+ font-size: 1.2rem;
38
+ }
39
 
40
+ p {
41
+ font-size: 1.2rem;
42
+ line-height: 1.5;
43
+ }
44
+
45
+ a {
46
+ color: #03a9f4;
47
+ text-decoration: none;
48
+ }
49
+
50
+ a:hover {
51
+ text-decoration: underline;
52
+ }
53
+
54
+ b {
55
+ font-weight: bold;
56
+ }
57
+
58
+ i {
59
+ font-style: italic;
60
+ }
61
+ </style>
62
+ </head>
63
+
64
+ <body>
65
+ <h1>Slate Model</h1>
66
+ <p>
67
+ Welcome to the HuggingFace repository for the Slate Model! This is a general model trained on various styles and optimized for multi-resolution tasks, ranging between 768x and 1.5k.
68
+ </p>
69
+
70
+ <h2>About the Model</h2>
71
+ <ul>
72
+ <li><strong>Model Name:</strong> Slate Model</li>
73
+ <li><strong>Resolution:</strong> Multi-resolution (optimal between 768x and 1.5k)</li>
74
+ <li><strong>Training Styles:</strong> General model trained in many styles</li>
75
+ <li><strong>Training Dataset:</strong> Custom merge of stable diffusion 2.1 (768x)</li>
76
+ <li><strong>Language:</strong> English</li>
77
+ <li><strong>Tags:</strong> stable-diffusion, text-to-image</li>
78
+ <li><strong>License:</strong> openrail</li>
79
+ </ul>
80
+
81
+ <h2>Versions</h2>
82
+ <p>
83
+ The Slate Model is available in three different versions, each with unique training characteristics:
84
+ </p>
85
+ <ul>
86
+ <li>Pure Release</li>
87
+ <li>Better3D (Trained a little heavier on 3D, resulted in more simplistic anime)</li>
88
+ <li>Platinum Mix (A custom mix I was playing with)</li>
89
+ </ul>
90
+
91
+ <p>
92
+ <b>Important:</b> Whether choosing the ckpt or safetensors version, you will require the YAML inference file for webui use. To avoid generating black images, you must use either the <i>--no-half</i> switch in webui startup or the <i>--xformers</i> switch (xformers should be much faster).
93
+ </p>
94
+
95
+ <h2>The GreyModel Project</h2>
96
+ <p>
97
+
98
+ <p>
99
+ SlateModel is part of the GreyModel project, which is built upon Stable Diffusion 2.1 768x.
100
+ The GreyModel is a community-driven project aimed at creating a Stable Diffusion model that embraces both the light and dark aspects of humanity.
101
+ </p>
102
+ <p>
103
+ The model is powered by the community's efforts to gather, caption, and enhance data.
104
+ Join the community by participating in the Discord server: <a href="https://discord.gg/mhvucN4cDq">https://discord.gg/mhvucN4cDq</a>.
105
+ </p>
106
+ <h2>Getting Started</h2>
107
+ <p>
108
+ To use the Slate Model in your project, simply follow the instructions provided in the HuggingFace <a href="https://huggingface.co/transformers/quickstart.html">Quick Start guide</a>.
109
+ </p>
110
+ </body>
111
+ </html>