Commit 67e2069b authored by Chris's avatar Chris
Browse files

Added spots for visualizations, fixed JS

parent e185f4a9
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
<!DOCTYPE html>
<meta charset="utf-8">
<html>
    <style>
        textarea[name="message"] {
@@ -46,8 +48,8 @@

                <tbody>
                    <tr>
                        <td id="alg1_name">Neural Network</td>
                        <td id="alg1_f1">1.0</td>
                        <td id="alg1_name"><b>Neural Network (in use)</b></td>
                        <td id="alg1_f1"><b>1.0</b></td>
                    </tr>
                    <tr>
                        <td id="alg2_name">Neural Network</td>
@@ -70,6 +72,12 @@
            </table>
        </div>
        <br>
        <div id="confusion_matrices">
            <p>Confusion matrices for each algorithm will go here</p>
        </div>
        <div id="other_visualizations">
            <p>Other graphs/visualizations will go here</p>
        </div>
    </body>
</html>

+1 −0
Original line number Diff line number Diff line
@@ -106,6 +106,7 @@ function getTopFiveWords() {
            console.log("Error getting ranked algorithms/F1 scores from the backend server. (Is it running?)");
        }
    }
}

function initializeIndex() {
    getTopFiveAlgorithms();