simonko912 commited on
Commit
1b6a6a3
·
verified ·
1 Parent(s): 358a1f8

Update app.js

Browse files
Files changed (1) hide show
  1. app.js +22 -22
app.js CHANGED
@@ -79,35 +79,35 @@ function render() {
79
 
80
 
81
  row.innerHTML = `
82
- <td>${index + 1}</td>
83
 
84
- <td>
85
- <a href="${model.hf}" target="_blank">
86
- ${model.name}
87
- </a>
88
- </td>
89
 
90
- <td>${model.parameters_display || formatParams(model.parameters)}</td>
91
 
92
- <td>${model.ctx}</td>
93
 
94
- <td>${model.type || "Unknown"}</td>
95
 
96
- <td>
97
- ${(model.efficiency / 1000000).toFixed(2)}M
98
- </td>
99
 
100
- <td>${model.overall.toFixed(2)}</td>
101
- <td>${model.knowledge.toFixed(2)}</td>
102
- <td>${model.reasoning.toFixed(2)}</td>
103
- <td>${model.instructions.toFixed(2)}</td>
104
- <td>${model.coding.toFixed(2)}</td>
105
- <td>${model.math.toFixed(2)}</td>
106
 
107
- <td class="notes">
108
- ${model.notes || ""}
109
- </td>
110
- `;
111
 
112
  table.appendChild(row);
113
  });
 
79
 
80
 
81
  row.innerHTML = `
82
+ <td>${index + 1}</td>
83
 
84
+ <td>
85
+ <a href="${model.hf}" target="_blank">
86
+ ${model.name}
87
+ </a>
88
+ </td>
89
 
90
+ <td>${model.parameters_display || formatParams(model.parameters)}</td>
91
 
92
+ <td>${model.ctx}</td>
93
 
94
+ <td>${model.type || "Unknown"}</td>
95
 
96
+ <td>
97
+ ${(model.efficiency / 1000000).toFixed(2)}M
98
+ </td>
99
 
100
+ <td>${model.overall.toFixed(2)}</td>
101
+ <td>${model.knowledge.toFixed(2)}</td>
102
+ <td>${model.reasoning.toFixed(2)}</td>
103
+ <td>${model.instructions.toFixed(2)}</td>
104
+ <td>${model.coding.toFixed(2)}</td>
105
+ <td>${model.math.toFixed(2)}</td>
106
 
107
+ <td class="notes">
108
+ ${model.notes || ""}
109
+ </td>
110
+ `;
111
 
112
  table.appendChild(row);
113
  });