瀏覽代碼

fix output line

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):