如何记录从TensorFlow到CSV文件的结果
我有一个在TensorFlow上运行的CNN模型,并希望保存准确性,损失,F1,精度和回忆值,因为我还想保存这些图和混淆矩阵(您可以将这些剧情保存到CSV吗?)。 如何将每个模型运行到CSV或文本文件中保存此数据?
I have a CNN model running on tensorflow and would like to save the accuracy, loss, f1, precision and recall values as , i also have plots and confusion matrix (can you save these plots to csv?)i would like to save.
how can i save this data with each model run to a csv or text file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
tf.keras.callbacks.csvlogger
:After training,您可以轻松地使用CSV文件进行绘图。
Try using
tf.keras.callbacks.CSVLogger
:After training, you can easily use the csv file for plotting.