diff --git a/predihood/static/js/algorithms.js b/predihood/static/js/algorithms.js index 2d29d2eaedcfc852c8c4a7df89e22ac7a1cc8127..ccbb4d2b8a2c25aa49f5fab0415754354d50f425 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 1c0f0d2aae2e824f661611816c6ec3dc2c9d59db..d68ca4850ef3f1699e01ea42ff7328fbb2128a2b 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>