diff options
author | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2017-02-16 16:28:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 16:28:53 -0800 |
commit | 8a7a61a142d14886ddf279459fc5239f66d48a62 (patch) | |
tree | 7a6894800bef16e85acec6ab42ba671496922b85 /tools | |
parent | c5fad40d336883feb64cb0405abd4f56579faa83 (diff) | |
parent | de3a12f46217dcac8aae467931e6d5ffb5fbc4e2 (diff) | |
download | caffeonacl-8a7a61a142d14886ddf279459fc5239f66d48a62.tar.gz caffeonacl-8a7a61a142d14886ddf279459fc5239f66d48a62.tar.bz2 caffeonacl-8a7a61a142d14886ddf279459fc5239f66d48a62.zip |
Merge pull request #5074 from garion9013/master
Fix plot_training_log.py.example
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/extra/plot_training_log.py.example | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/tools/extra/plot_training_log.py.example b/tools/extra/plot_training_log.py.example index 79924ae5..8caca6b8 100755 --- a/tools/extra/plot_training_log.py.example +++ b/tools/extra/plot_training_log.py.example @@ -90,9 +90,9 @@ def load_data(data_file, field_idx0, field_idx1): def random_marker(): markers = mks.MarkerStyle.markers - num = len(markers.values()) + num = len(markers.keys()) idx = random.randint(0, num - 1) - return markers.values()[idx] + return markers.keys()[idx] def get_data_label(path_to_log): label = path_to_log[path_to_log.rfind('/')+1 : path_to_log.rfind( @@ -126,16 +126,9 @@ def plot_chart(chart_type, path_to_png, path_to_log_list): plt.plot(data[0], data[1], label = label, color = color, linewidth = linewidth) else: - ok = False - ## Some markers throw ValueError: Unrecognized marker style - while not ok: - try: - marker = random_marker() - plt.plot(data[0], data[1], label = label, color = color, - marker = marker, linewidth = linewidth) - ok = True - except: - pass + marker = random_marker() + plt.plot(data[0], data[1], label = label, color = color, + marker = marker, linewidth = linewidth) legend_loc = get_legend_loc(chart_type) plt.legend(loc = legend_loc, ncol = 1) # ajust ncol to fit the space plt.title(get_chart_type_description(chart_type)) |