Update parse_log.py
authorAlessandro Giusti <lalelale@users.noreply.github.com>
Mon, 11 Jul 2016 18:33:16 +0000 (20:33 +0200)
committerGitHub <noreply@github.com>
Mon, 11 Jul 2016 18:33:16 +0000 (20:33 +0200)
Aligned output description in docstring with actual output returned by parse_log

tools/extra/parse_log.py

index bb9b65a..375b0db 100755 (executable)
@@ -16,13 +16,10 @@ from collections import OrderedDict
 
 def parse_log(path_to_log):
     """Parse log file
-    Returns (train_dict_list, train_dict_names, test_dict_list, test_dict_names)
+    Returns (train_dict_list, test_dict_list)
 
     train_dict_list and test_dict_list are lists of dicts that define the table
     rows
-
-    train_dict_names and test_dict_names are ordered tuples of the column names
-    for the two dict_lists
     """
 
     regex_iteration = re.compile('Iteration (\d+)')