Spaces:
Running
Running
Commit
·
537d004
1
Parent(s):
b6609fd
add
Browse files- index.html +25 -1
index.html
CHANGED
|
@@ -207,6 +207,21 @@ tr:hover a {
|
|
| 207 |
'Logic Puzzle': 'Logic_Puzzle.json',
|
| 208 |
'Cryptogram': 'Cryptogram.json',
|
| 209 |
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
function createTable(data, tableId) {
|
| 212 |
let table = `<table id="${tableId}">`;
|
|
@@ -218,7 +233,16 @@ tr:hover a {
|
|
| 218 |
data.forEach(row => {
|
| 219 |
table += '<tr>';
|
| 220 |
for (let key in row) {
|
| 221 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 222 |
}
|
| 223 |
table += '</tr>';
|
| 224 |
});
|
|
|
|
| 207 |
'Logic Puzzle': 'Logic_Puzzle.json',
|
| 208 |
'Cryptogram': 'Cryptogram.json',
|
| 209 |
};
|
| 210 |
+
|
| 211 |
+
const modelurls = {
|
| 212 |
+
'Llama-3.1-8B-Instruct': 'https://huggingface.co/meta-llama/Llama-3.1-8B-Instruct',
|
| 213 |
+
'Llama-3.1-70B-Instruct': 'https://huggingface.co/meta-llama/Llama-3.1-70B-Instruct',
|
| 214 |
+
'Llama-3.3-70B-Instruct': 'https://huggingface.co/meta-llama/Llama-3.3-70B-Instruct',
|
| 215 |
+
'Mistral-7B-Instruct-v0.3': 'https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3',
|
| 216 |
+
'Mistral-Small-Instruct-2409': 'https://huggingface.co/mistralai/Mistral-Small-Instruct-2409',
|
| 217 |
+
'Mistral-Large-Instruct-2411': 'https://huggingface.co/mistralai/Mistral-Large-Instruct-2411',
|
| 218 |
+
'Qwen2.5-7B-Instruct': 'https://huggingface.co/Qwen/Qwen2.5-7B-Instruct',
|
| 219 |
+
'Qwen2.5-32B-Instruct': 'https://huggingface.co/Qwen/Qwen2.5-32B-Instruct',
|
| 220 |
+
'Qwen2.5-72B-Instruct': 'https://huggingface.co/Qwen/Qwen2.5-72B-Instruct',
|
| 221 |
+
'QwQ-32B-Preview': 'https://huggingface.co/Qwen/QwQ-32B-Preview',
|
| 222 |
+
'DeepSeek-R1': 'https://huggingface.co/deepseek-ai/DeepSeek-R1'
|
| 223 |
+
|
| 224 |
+
}
|
| 225 |
|
| 226 |
function createTable(data, tableId) {
|
| 227 |
let table = `<table id="${tableId}">`;
|
|
|
|
| 233 |
data.forEach(row => {
|
| 234 |
table += '<tr>';
|
| 235 |
for (let key in row) {
|
| 236 |
+
if (key === 'Model') {
|
| 237 |
+
const link = modelurls[row[key]];
|
| 238 |
+
if (link) {
|
| 239 |
+
row[key] = `<td><a href="${link}" target="_blank" rel="noopener noreferrer">${row[key]}</a></td>`;
|
| 240 |
+
} else {
|
| 241 |
+
row[key] = `<td>${row[key]}</td>`;
|
| 242 |
+
}
|
| 243 |
+
} else {
|
| 244 |
+
row[key] = `<td>${row[key]}</td>`;
|
| 245 |
+
}
|
| 246 |
}
|
| 247 |
table += '</tr>';
|
| 248 |
});
|