Преглед на файлове

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)