This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| python chainer_log_to_csv.py [input path] [output path] | |
| """ | |
| import argparse | |
| import csv | |
| import json | |
| def convert(input_name,output_name): | |
| log_list = json.load(open(input_name)) |