rityak commited on
Commit
7794e1f
·
verified ·
1 Parent(s): bbc61ca

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .gitattributes +2 -0
  2. README.md +187 -0
  3. img.png +3 -0
  4. vid.mp4 +3 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ img.png filter=lfs diff=lfs merge=lfs -text
37
+ vid.mp4 filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-to-image
5
+ library_name: diffusers
6
+ tags:
7
+ - text-to-image
8
+ - stable-diffusion
9
+ - safetensors
10
+ - stable-diffusion-xl
11
+ - merge
12
+ license: openrail++
13
+ base_model:
14
+ - cagliostrolab/animagine-xl-3.1
15
+ - Eugeoter/anime_illust_diffusion_xl
16
+ - RunDiffusion/Juggernaut-XL-v9
17
+ - KBlueLeaf/Kohaku-XL-Zeta
18
+ - votepurchase/Starry-XL-v5.2
19
+ - cagliostrolab/animagine-xl-4.0
20
+ - kayfahaarukku/UrangDiffusion-2.0
21
+ - Raelina/Rae-Diffusion-XL-V2
22
+ - yodayo-ai/clandestine-xl-1.0
23
+ ---
24
+
25
+ <style>
26
+ .container {
27
+ display: flex;
28
+ gap: 2rem;
29
+ align-items: flex-start;
30
+ }
31
+ .image-wrapper,
32
+ .details {
33
+ flex: 1 1 50%;
34
+ }
35
+ .image-wrapper {
36
+ display: flex;
37
+ justify-content: center;
38
+ align-items: center;
39
+ }
40
+ .model-image {
41
+ width: 100%;
42
+ max-width: 500px;
43
+ min-width: 300px;
44
+ border-radius: 8px;
45
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
46
+ }
47
+ .details h1 {
48
+ margin-top: 0;
49
+ font-size: 2rem;
50
+ color: #fff;
51
+ }
52
+ .details .description {
53
+ margin: 0.5rem 0 1.5rem;
54
+ line-height: 1.5;
55
+ color: #ccc;
56
+ }
57
+ .features-list {
58
+ list-style: none;
59
+ padding: 0;
60
+ margin: 0 0 1.5rem;
61
+ }
62
+ .features-list li {
63
+ display: flex;
64
+ align-items: center;
65
+ margin-bottom: 0.5rem;
66
+ font-size: 1rem;
67
+ color: #fff;
68
+ }
69
+ .features-list .icon {
70
+ margin-right: 0.6rem;
71
+ font-size: 1.2rem;
72
+ }
73
+ .badge-list {
74
+ list-style: none;
75
+ padding: 0;
76
+ margin: 0;
77
+ display: flex;
78
+ flex-wrap: wrap;
79
+ row-gap: 0.25rem;
80
+ column-gap: 0.5rem;
81
+ }
82
+ .badge-list li {
83
+ margin: 0;
84
+ }
85
+ .badge-btn {
86
+ display: inline-flex;
87
+ align-items: center;
88
+ height: 28px;
89
+ padding: 0 10px;
90
+ font-size: 14px;
91
+ font-weight: 500;
92
+ color: #fff;
93
+ text-decoration: none;
94
+ border-radius: 4px;
95
+ white-space: nowrap;
96
+ transition: opacity 0.2s, transform 0.1s;
97
+ }
98
+ .badge-btn .btn-icon {
99
+ width: 16px;
100
+ height: 16px;
101
+ margin-right: 6px;
102
+ }
103
+ .badge-btn:hover {
104
+ opacity: 0.85;
105
+ transform: translateY(-1px);
106
+ }
107
+ .badge-btn.civitai {
108
+ background-color: #2975fa8d;
109
+ }
110
+ .badge-btn.hf {
111
+ background-color: #ff66008d;
112
+ }
113
+ @media (max-width: 700px) {
114
+ .container {
115
+ flex-direction: column;
116
+ align-items: center;
117
+ }
118
+ .image-wrapper,
119
+ .details {
120
+ flex: unset;
121
+ width: 100%;
122
+ }
123
+ .model-image {
124
+ width: 90%;
125
+ max-width: 500px;
126
+ min-width: auto;
127
+ margin-bottom: 1rem;
128
+ }
129
+ }
130
+ </style>
131
+ <div class="container">
132
+ <div class="image-wrapper">
133
+ <img
134
+ src="https://huggingface.co/rityak/RealCoreXL/resolve/main/img.png"
135
+ alt="RealCore XL Example"
136
+ class="model-image"
137
+ />
138
+ </div>
139
+ <div class="details">
140
+ <h1>RealCore XL 1.0</h1>
141
+ <p class="description">
142
+ <strong>RealCore</strong>
143
+ </p>
144
+ <ul class="badge-list">
145
+ <li>
146
+ <a
147
+ href="https://civitai.com/models/2077774"
148
+ target="_blank"
149
+ class="badge-btn civitai"
150
+ >
151
+ <img
152
+ src="https://civitai.com/favicon-blue.ico"
153
+ alt="CivitAI"
154
+ class="btn-icon"
155
+ />
156
+ View on CivitAI
157
+ </a>
158
+ </li>
159
+ <li>
160
+ <a
161
+ href="https://huggingface.co/rityak/RealCoreXL/"
162
+ target="_blank"
163
+ class="badge-btn hf"
164
+ >
165
+ <img
166
+ src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
167
+ alt="Hugging Face"
168
+ class="btn-icon"
169
+ />
170
+ Download RealCore XL 1.0
171
+ </a>
172
+ </li>
173
+ </ul>
174
+ </div>
175
+ </div>
176
+
177
+ - **Civitai hub**
178
+ Explore model details, community examples, and usage tips:
179
+ [View on CivitAI](https://civitai.com/models/2077774)
180
+
181
+ - **RealCore XL 1.0**
182
+ [Download RealCore XL 1.0](https://huggingface.co/rityak/RealCoreXL/)
183
+
184
+ ## Model Details
185
+
186
+ - **Model type**: diffusion-based text-to-image
187
+ - **Base checkpoint**: Stable Diffusion XL 1.0
img.png ADDED

Git LFS Details

  • SHA256: f4d6bf4362fbe1319a22f5648e70520253406c1e64f52e925d6fe06b3ecb0d7c
  • Pointer size: 132 Bytes
  • Size of remote file: 1.16 MB
vid.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a33c0c07b0a23a288bce6a77e20520c764314b1811d3b2b9f90d2b8bdc496029
3
+ size 1183425