wzxii commited on
Commit
a84c31c
1 Parent(s): 7a44830

Update table.js

Browse files
Files changed (1) hide show
  1. table.js +6 -6
table.js CHANGED
@@ -167,12 +167,12 @@ function renderRows(model) {
167
  }
168
  function renderTables() {
169
  let html = ''
170
- let rows = models.length + 1
171
- html += `
172
- <tr>
173
- <td class="td_HumanEval" rowspan="${rows}">HumanEval</td>
174
- </tr>
175
- `
176
  models.forEach(model => {
177
  html += renderRows(model);
178
  });
 
167
  }
168
  function renderTables() {
169
  let html = ''
170
+ // let rows = models.length + 1
171
+ // html += `
172
+ // <tr>
173
+ // <td class="td_HumanEval" rowspan="${rows}">HumanEval</td>
174
+ // </tr>
175
+ // `
176
  models.forEach(model => {
177
  html += renderRows(model);
178
  });