【发布时间】:2020-09-10 23:08:32
【问题描述】:
我正在尝试在这个 Tensorflow tutorial 中复制超参数调整教程中的平行坐标图,并且我已经编写了自己的 csv 文件来存储我的结果。 我读取 csv 文件的输出是这样的:
conv_layers filters dropout accuracy
0 4 16 0.5 0.447917
1 4 16 0.6 0.458333
2 4 32 0.5 0.635417
3 4 32 0.6 0.447917
4 4 64 0.5 0.604167
5 4 64 0.6 0.645833
6 8 16 0.5 0.437500
7 8 16 0.6 0.437500
8 8 32 0.5 0.437500
9 8 32 0.6 0.562500
10 8 64 0.5 0.562500
11 8 64 0.6 0.437500
如何在 python 中创建与教程中相同的绘图?
【问题讨论】:
标签: tensorboard tensorflow-serving hyperparameters