(logits)
| 112 | } |
| 113 | |
| 114 | export function renderLogitsForManualInput(logits) { |
| 115 | const logitsElement = document.getElementById('logits'); |
| 116 | renderLogits(logits, logitsElement); |
| 117 | } |
| 118 | |
| 119 | export function renderEvaluateTable(xData, yTrue, yPred, logits) { |
| 120 | const tableBody = document.getElementById('evaluate-tbody'); |
nothing calls this directly
no test coverage detected