Jérôme BUISINE преди 4 години
родител
ревизия
b5efe367c4
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      find_best_attributes_from.py

+ 1 - 1
find_best_attributes_from.py

@@ -121,7 +121,7 @@ def main():
         test_roc_auc = roc_auc_score(y_test, y_test_model)
         
         with open('data/results/selectFromModel.csv', 'a') as f:
-            line += str(len(binary_selection)) + ';'
+            line = str(len(binary_selection)) + ';'
             line += str(test_roc_auc) + ';'
             
             for index, b in enumerate(binary_selection):