-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllmodel.html
More file actions
262 lines (231 loc) · 11.3 KB
/
Copy pathllmodel.html
File metadata and controls
262 lines (231 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parameter LLM GGUF Models</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<!-- Google Fonts: Inter & Geist Mono -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Geist+Mono:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0a0e1a;
--bg-secondary: #1a1f2e;
--bg-tertiary: #212937;
--border-color: #2a3142;
--text-primary: #e4e4e7;
--text-secondary: #9ca3af;
--accent-green: #bbff00;
--accent-blue: #60a5fa;
}
body {
background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
color: var(--text-primary);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
min-height: 100vh;
}
/* Font Monospace Khusus untuk Parameter */
.font-mono {
font-family: 'Geist Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}
/* Hero Section Styling */
.hero-section {
padding: 60px 0;
text-align: center;
}
.hero-title {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -1px;
color: var(--accent-green);
text-shadow: 0 0 10px rgba(187, 255, 0, 0.5);
margin-bottom: 20px;
}
.hero-description {
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}
/* Models Section Styling */
.models-section {
padding-bottom: 60px;
}
/* Model Card Styling */
.model-card {
background: rgba(26, 31, 46, 0.6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid var(--border-color);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border-radius: 16px;
padding: 25px;
margin-bottom: 30px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: fadeIn 0.8s ease-out;
}
.model-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
border-color: var(--accent-green);
}
.model-name {
font-size: 1.1rem;
font-weight: 700;
color: var(--accent-green);
margin-bottom: 15px;
}
.model-parameter {
margin-bottom: 12px;
font-size: 0.9rem;
}
.parameter-key {
font-weight: 600;
color: var(--text-secondary);
}
.parameter-value {
background: var(--bg-tertiary);
padding: 2px 8px;
border-radius: 6px;
word-break: break-all;
color: var(--text-primary);
}
.copy-btn {
background: transparent;
border: 1px solid var(--border-color);
padding: 4px 8px;
border-radius: 6px;
cursor: pointer;
color: var(--text-secondary);
font-size: 0.8rem;
margin-left: 10px;
transition: all 0.2s ease;
}
.copy-btn:hover {
background: var(--accent-green);
color: var(--bg-primary);
border-color: var(--accent-green);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero-title {
font-size: 2rem;
}
.model-card {
padding: 20px;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero-section">
<div class="container">
<h1 class="hero-title">Custom-Parameter GGUF Models</h1>
<p class="hero-description">
A curated list of fine-tuned GGUF models optimized for Text, Code & Math generation. Click to copy parameters for your setup.
</p>
</div>
</section>
<!-- Models Section -->
<section class="models-section">
<div class="container">
<div class="row" id="model-list-container">
<!-- Models will be dynamically inserted here by JS -->
</div>
</div>
</section>
<script>
// Data for all models
const models = [
{ name: "⬢ MATH EQUATIONS & REASONING: Palmyra-Mini-Thinking-B 1.78B Q4", repo: "prithivMLmods/palmyra-mini-thinking-AIO-GGUF", model: "palmyra-mini-thinking-b-GGUF/palmyra-mini-thinking-b.Q4_K_M.gguf" },
{ name: "⬢ COMPLEX LOGIC & REASONING: Qwen2.5-Coder-0.5B-Instruct-Gensyn-Swarm-Agents", repo: "0xgr3y/Qwen2.5-Coder-0.5B-Instruct-Gensyn-Swarm-tall_tame_panther", model: "Qwen2.5-Coder-0.5B-Q4_K_M.gguf" },
{ name: "⬢ CODING & TEXT GEN: CodeGemma-1.1-2B Q4", repo: "bartowski/codegemma-2b-GGUF", model: "codegemma-2b-Q4_K_M.gguf" },
{ name: "⬢ CODING & MATH: DeepSeek-Coder-1.3B Q4", repo: "TheBloke/deepseek-coder-1.3b-base-GGUF", model: "deepseek-coder-1.3b-base.Q4_K_M.gguf" },
{ name: "⬢ TEXT & MATH GEN: Qwen2.5-1.5B Q4", repo: "bartowski/Qwen2.5-1.5B-Instruct-GGUF", model: "Qwen2.5-1.5B-Instruct-Q4_K_M.gguf" },
{ name: "⬢ GENERAL TEXT & REASONING: Llama-3.2-1B Q4", repo: "bartowski/Llama-3.2-1B-Instruct-GGUF", model: "Llama-3.2-1B-Instruct-Q4_K_M.gguf" },
{ name: "⬢ MULTILINGUAL TEXT & MATH: Gemma-2-2B Q4", repo: "bartowski/gemma-2-2b-it-GGUF", model: "gemma-2-2b-it-Q4_K_M.gguf" },
{ name: "⬢ REASONING & CODING: Phi-3-mini-3.8B Q4", repo: "bartowski/Phi-3.1-mini-4k-instruct-GGUF", model: "Phi-3.1-mini-4k-instruct-Q4_K_M.gguf" },
{ name: "⬢ Gensyn/Qwen2.5-1.5B-Instruct - GGUF Q4", repo: "tensorblock/Gensyn_Qwen2.5-1.5B-Instruct-GGUF", model: "Qwen2.5-1.5B-Instruct-Q4_K_M.gguf" },
{ name: "⬢ CHAT & CODING: StableLM-2-Zephyr-1.6B Q4", repo: "TheBloke/stablelm-zephyr-3b-GGUF", model: "stablelm-zephyr-3b.Q4_K_M.gguf" },
{ name: "⬢ MATH & REASONING: SmolLM3-3B Q4", repo: "ggml-org/SmolLM3-3B-GGUF", model: "SmolLM3-Q4_K_M.gguf" },
{ name: "⬢ Causal Language Model (Fine-tuned with LoRA)", repo: "mradermacher/Genuine-1B-GGUF", model: "Genuine-1B.Q4_K_M.gguf" },
{ name: "⬢ TEXT GENERATION: Qwen3-1.7B Q4", repo: "unsloth/Qwen3-1.7B-GGUF", model: "Qwen3-1.7B-Q4_K_M.gguf" },
{ name: "⬢ INSTRUCT TEXT & MATH: Gemma-1.1-2B-IT Q4", repo: "lmstudio-community/gemma-1.1-2b-it-GGUF", model: "gemma-1.1-2b-it-Q4_K_M.gguf" },
{ name: "⬢ DeepseekR1 & Qwen - DeepSeek-R1-Distill-Qwen-1.5B Q4", repo: "unsloth/DeepSeek-R1-Distill-Qwen-1.5B-GGUF", model: "DeepSeek-R1-Distill-Qwen-1.5B-Q4_K_M.gguf" },
{ name: "⬢ ADVANCED CODING & MATH: DeepSeek-Coder-V2-Lite-1.3B Q4", repo: "TheBloke/deepseek-coder-1.3b-instruct-GGUF", model: "deepseek-coder-1.3b-instruct.Q4_K_M.gguf" },
{ name: "⬢ CODE GEN & TEXT: tinylama-rust-1B Q4", repo: "vasu14devagarwal/tinylama-rust-Q4_K_M-GGUF", model: "tinylama-rust-q4_k_m.gguf" },
{ name: "⬢ MATH & REASONING: SmolLM3-1.7B Q4", repo: "ggml-org/SmolLM3-1.7B-GGUF", model: "SmolLM3-1.7B-Q4_K_M.gguf" },
{ name: "⬢ ULTRA LIGHT : Fine-tuned Tesslate/Rust_Dataset Q4", repo: "mradermacher/Tiny-OR1-Rust-GGUF", model: "Tiny-OR1-Rust.Q4_K_M.gguf" }
];
document.addEventListener('DOMContentLoaded', function() {
const container = document.getElementById('model-list-container');
models.forEach((model, index) => {
// Create column for each card
const col = document.createElement('div');
col.className = 'col-lg-4 col-md-6'; // Responsive grid
// Create card element
const card = document.createElement('div');
card.className = 'model-card';
card.style.animationDelay = `${index * 0.05}s`; // Staggered animation
// Populate card content
card.innerHTML = `
<h3 class="model-name">${model.name}</h3>
<div class="model-parameter">
<span class="parameter-key">LLM_HF_REPO:</span>
<code class="parameter-value font-mono">${model.repo}</code>
<button class="copy-btn" data-copy-text="${model.repo}">
<i class="fas fa-copy"></i> Copy
</button>
</div>
<div class="model-parameter">
<span class="parameter-key">LLM_HF_MODEL_NAME:</span>
<code class="parameter-value font-mono">${model.model}</code>
<button class="copy-btn" data-copy-text="${model.model}">
<i class="fas fa-copy"></i> Copy
</button>
</div>
`;
col.appendChild(card);
container.appendChild(col);
});
// Add event listeners to all copy buttons
const copyButtons = document.querySelectorAll('.copy-btn');
copyButtons.forEach(button => {
button.addEventListener('click', function() {
const textToCopy = this.getAttribute('data-copy-text');
const originalHTML = this.innerHTML;
navigator.clipboard.writeText(textToCopy).then(() => {
// Provide feedback
this.innerHTML = '<i class="fas fa-check"></i> Copied!';
this.style.background = 'var(--accent-green)';
this.style.color = 'var(--bg-primary)';
this.style.borderColor = 'var(--accent-green)';
// Revert after 2 seconds
setTimeout(() => {
this.innerHTML = originalHTML;
this.style.background = 'transparent';
this.style.color = 'var(--text-secondary)';
this.style.borderColor = 'var(--border-color)';
}, 2000);
}).catch(err => {
console.error('Failed to copy: ', err);
});
});
});
});
</script>
</body>
</html>