SaisExperiments commited on
Commit
710b171
·
verified ·
1 Parent(s): 23279b4

More html, still pink :p

Browse files

Preview:
![image.png](https://cdn-uploads.huggingface.co/production/uploads/660e67afe23148df7ca321a5/bezDKajcFu9tvzceBaXG0.png)

Files changed (1) hide show
  1. README.md +204 -5
README.md CHANGED
@@ -2,12 +2,211 @@
2
  quantized_by: ArtusDev
3
  pipeline_tag: text-generation
4
  base_model: allura-org/Gemma-3-Glitter-4B
5
- license: other
6
  base_model_relation: quantized
 
 
 
 
 
7
  ---
 
 
8
 
9
- # ArtusDev/allura-org_Gemma-3-Glitter-4B-GGUF
10
- This model was converted to GGUF format from [`allura-org/Gemma-3-Glitter-4B`](https://huggingface.co/allura-org/Gemma-3-Glitter-4B) using llama.cpp with imatrix option.
11
- Refer to the [original model card](https://huggingface.co/allura-org/Gemma-3-Glitter-4B) for more details on the model.
12
 
13
- GGUF Quants (imatrix) by ArtusDev.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  quantized_by: ArtusDev
3
  pipeline_tag: text-generation
4
  base_model: allura-org/Gemma-3-Glitter-4B
5
+ license: gemma
6
  base_model_relation: quantized
7
+ language:
8
+ - en
9
+ tags:
10
+ - imatrix
11
+ - gemma3_text
12
  ---
13
+ <!DOCTYPE html>
14
+ <div class="container">
15
 
16
+ <style>
17
+ /* --- Pink Confetti :3 Theme --- */
18
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Source+Code+Pro:wght@400;600&display=swap');
19
 
20
+ /* --- Define Theme Colors as Variables --- */
21
+ .container {
22
+ /* You can easily change the theme by editing these! */
23
+ --bg-gradient-start: #3a1c3a;
24
+ --bg-gradient-end: #1a0d1a;
25
+ --text-color-main: #f0e6f0;
26
+ --text-color-muted: #e6d9e6;
27
+ --text-color-subtle: #d9c7d9;
28
+ --border-color-soft: #ff80c0; /* Soft Pink */
29
+ --accent-color-hot: #ff69b4; /* Hot Pink */
30
+ --accent-color-light: #ff99cc; /* Lighter Pink */
31
+ --accent-color-hover: #ffb3da; /* Even Lighter Pink (Hover) */
32
+ --shadow-color-glow: rgba(255, 105, 180, 0.2);
33
+ --shadow-color-text: rgba(255, 105, 180, 0.5);
34
+ --shadow-color-hover: rgba(255, 182, 193, 0.6);
35
+ --section-bg-subtle: rgba(255, 182, 193, 0.08);
36
+ --code-bg: #2b1d2b;
37
+ --code-text-color: #f0e6f0;
38
+ --token-tag-color: #ff99cc;
39
+ --token-role-color: #ffb3da;
40
+ --token-comment-color: #b3a3b3;
41
+
42
+ /* Base Styles */
43
+ font-family: 'Roboto', sans-serif;
44
+ background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
45
+ color: var(--text-color-main);
46
+ padding: 25px;
47
+ border-radius: 12px;
48
+ border: 1px solid var(--border-color-soft);
49
+ box-shadow: 0 4px 15px var(--shadow-color-glow);
50
+ margin: 15px auto;
51
+ max-width: 900px;
52
+ overflow: hidden; /* Keep elements contained */
53
+
54
+ /* Basic Accessibility Check: Ensure sufficient contrast, especially for text! */
55
+ }
56
+
57
+ /* --- Typography & Elements --- */
58
+
59
+ .title {
60
+ /* font-family: 'Roboto', sans-serif; /* Inherited from .container */
61
+ font-size: 2.2em;
62
+ font-weight: 700;
63
+ color: var(--accent-color-hot);
64
+ text-align: center;
65
+ margin-bottom: 25px;
66
+ padding-bottom: 15px;
67
+ border-bottom: 2px solid var(--border-color-soft);
68
+ text-shadow: 0 0 8px var(--shadow-color-text);
69
+ word-wrap: break-word;
70
+ }
71
+
72
+ .section {
73
+ margin-bottom: 25px;
74
+ padding: 20px;
75
+ background-color: var(--section-bg-subtle);
76
+ border-radius: 8px;
77
+ border-left: 4px solid var(--accent-color-hot);
78
+ }
79
+
80
+ h2 {
81
+ /* font-family: 'Roboto', sans-serif; /* Inherited */
82
+ color: var(--accent-color-light);
83
+ margin-top: 0;
84
+ margin-bottom: 15px;
85
+ padding-bottom: 5px;
86
+ border-bottom: 1px solid rgba(255, 128, 192, 0.4); /* Kept rgba for faintness */
87
+ font-weight: 700;
88
+ }
89
+
90
+ p {
91
+ line-height: 1.7;
92
+ margin-bottom: 12px;
93
+ color: var(--text-color-muted);
94
+ }
95
+
96
+ a {
97
+ color: var(--accent-color-hot);
98
+ text-decoration: none;
99
+ font-weight: 600; /* Use 700 if you want it bolder like headings */
100
+ transition: color 0.3s ease, text-shadow 0.3s ease;
101
+ }
102
+
103
+ a:hover, a:focus { /* Added :focus for accessibility */
104
+ color: var(--accent-color-hover);
105
+ text-decoration: underline;
106
+ text-shadow: 0 0 5px var(--shadow-color-hover);
107
+ outline: none; /* Optional: manage focus outline appearance */
108
+ }
109
+
110
+ /* --- Code Block Styling :3 --- */
111
+ pre {
112
+ font-family: 'Source Code Pro', monospace;
113
+ background-color: var(--code-bg);
114
+ border: 1px solid var(--border-color-soft);
115
+ border-radius: 6px;
116
+ padding: 15px;
117
+ overflow-x: auto; /* Allow horizontal scroll for long lines */
118
+ margin-top: 10px;
119
+ box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
120
+ white-space: pre; /* Preserve whitespace and line breaks */
121
+ }
122
+
123
+ code {
124
+ font-family: 'Source Code Pro', monospace; /* Ensure consistency */
125
+ color: var(--code-text-color);
126
+ background-color: transparent; /* Use pre's background */
127
+ font-size: 0.95em;
128
+ /* Removed padding/margin here, let <pre> handle spacing */
129
+ white-space: inherit; /* Inherit whitespace handling from <pre> */
130
+ }
131
+
132
+ /* Specific token styling within code - Applied in HTML now! */
133
+ .token-tag {
134
+ color: var(--token-tag-color);
135
+ font-weight: 600;
136
+ }
137
+
138
+ .token-role {
139
+ color: var(--token-role-color);
140
+ /* font-style: italic; /* Optional: Keep if you like italic roles */
141
+ }
142
+
143
+ .token-comment {
144
+ color: var(--token-comment-color);
145
+ font-style: italic;
146
+ }
147
+
148
+ /* --- Footer Credit --- */
149
+ .credit {
150
+ text-align: center;
151
+ margin-top: 20px;
152
+ font-size: 0.9em;
153
+ color: var(--text-color-subtle);
154
+ }
155
+ .credit strong {
156
+ color: var(--accent-color-light);
157
+ font-weight: 700; /* Make sure strong is actually bold */
158
+ }
159
+
160
+ /* --- Optional: Better Separation ---
161
+ For larger projects, move this CSS to a separate style.css file
162
+ and link it in the <head> of your HTML document:
163
+ <link rel="stylesheet" href="style.css">
164
+ */
165
+
166
+ </style>
167
+
168
+ <!-- Model Card Content -->
169
+ <h1 class="title">ArtusDev/allura-org_Gemma-3-Glitter-4B-GGUF</h1>
170
+
171
+ <div class="section">
172
+ <h2>✨ Overview :3</h2>
173
+ <p>
174
+ This repository contains GGUF format model files converted from <a href="https://huggingface.co/allura-org/Gemma-3-Glitter-4B" target="_blank">allura-org/Gemma-3-Glitter-4B</a>.
175
+ </p>
176
+ <p>
177
+ The conversion was performed by <strong>ArtusDev</strong> using <code>llama.cpp</code>, specifically utilizing the <code>imatrix</code> quantization option for potentially improved performance.
178
+ </p>
179
+ </div>
180
+
181
+ <div class="section">
182
+ <h2>📄 Original Model Details ^_^</h2>
183
+ <p>
184
+ For more information about the model please refer to the <a href="https://huggingface.co/allura-org/Gemma-3-Glitter-4B" target="_blank">original model card</a>. It's pretty neat (empty)!
185
+ </p>
186
+ </div>
187
+
188
+ <div class="section">
189
+ <h2>💬 Instruct Format >.<</h2>
190
+ <p>
191
+ This model uses a custom <strong>Gemma 2/3 instruct format</strong>. It has been trained to recognize an optional <code>system</code> role.
192
+ </p>
193
+
194
+ <!-- Proper HTML for code block with syntax highlighting spans -->
195
+ <pre><code><span class="token-tag">&lt;start_of_turn&gt;</span><span class="token-role">system</span>
196
+ <span class="token-comment">{optional system prompt here}</span><span class="token-tag">&lt;end_of_turn&gt;</span>
197
+ <span class="token-tag">&lt;start_of_turn&gt;</span><span class="token-role">user</span>
198
+ <span class="token-comment">{User messages. You can also place the system prompt here.}</span><span class="token-tag">&lt;end_of_turn&gt;</span>
199
+ <span class="token-tag">&lt;start_of_turn&gt;</span><span class="token-role">model</span>
200
+ <span class="token-comment">{Model's response}</span><span class="token-tag">&lt;end_of_turn&gt;</span></code></pre>
201
+ <!-- End of corrected code block -->
202
+
203
+ <p>
204
+ <strong>Note:</strong> Always ensure the format strictly adheres to the required tokens and structure for optimal model performance. Don't mess it up :3!
205
+ </p>
206
+ </div>
207
+
208
+ <div class="credit">
209
+ GGUF Quantizations (imatrix) by <strong>ArtusDev</strong> &gt;:3
210
+ </div>
211
+
212
+ </div>