瀏覽代碼

Train run script updated

Jérôme BUISINE 5 年之前
父節點
當前提交
1fcc49071d
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      save_model_result_in_md_maxwell.py

+ 3 - 3
save_model_result_in_md_maxwell.py

@@ -78,12 +78,12 @@ def main():
     print(bash_cmd)
 
     ## call command ##
-    #p = subprocess.Popen(bash_cmd, stdout=subprocess.PIPE, shell=True)
+    p = subprocess.Popen(bash_cmd, stdout=subprocess.PIPE, shell=True)
 
-    #(output, err) = p.communicate()
+    (output, err) = p.communicate()
 
     ## Wait for result ##
-    #p_status = p.wait()
+    p_status = p.wait()
 
     if not os.path.exists(markdowns_folder):
         os.makedirs(markdowns_folder)