From fbe3c3c2942a1cebb1409cdc429fdf3712b52b3d Mon Sep 17 00:00:00 2001 From: Nelly Barret <nelly.barret@inria.fr> Date: Thu, 19 Nov 2020 14:26:58 +0100 Subject: [PATCH] [M] minor fixes --- predihood/static/js/algorithms.js | 2 +- predihood/templates/algorithmic-interface.html | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/predihood/static/js/algorithms.js b/predihood/static/js/algorithms.js index 2d29d2ea..ccbb4d2b 100644 --- a/predihood/static/js/algorithms.js +++ b/predihood/static/js/algorithms.js @@ -91,7 +91,7 @@ $("#runBtn").click("on", function () { userParameters["test_size"] = $("#testPercentage")[0].valueAsNumber; userParameters["remove_outliers"] = $("#removeOutliers").prop("checked"); userParameters["remove_rural"] = $("#removeRural").prop("checked"); - userParameters["add_manual_iris"] = $("#addAssessmentIris").prop("checked"); + userParameters["add_manual_iris"] = false; // $("#addAssessmentIris").prop("checked"); console.log(chosen_clf); console.log(userParameters); request_run = $.ajax({ diff --git a/predihood/templates/algorithmic-interface.html b/predihood/templates/algorithmic-interface.html index 1c0f0d2a..d68ca485 100644 --- a/predihood/templates/algorithmic-interface.html +++ b/predihood/templates/algorithmic-interface.html @@ -96,9 +96,6 @@ Remove rural <input id="removeRural" type="checkbox" title="Check it to remove rural neighbourhoods."> <br> - <i class="fa fa-question-circle mr-3 text-primary fa-fw" title="Check it to add IRIS that have been manually assessed."></i> - Add manually assessed IRIS - <input id="addAssessmentIris" type="checkbox" title="Check it to add IRIS that have been manually assessed."> {% endif %} </div> </li> -- GitLab