Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我查看了 TFX 指南 ( https://www.tensorflow.org/tfx/guide ),并且能够运行管道。StatisticsGen 组件将数据集统计信息写入磁盘上的文件。如何可视化存储在文件中的统计信息?
谢谢
StatisticsGen 组件将统计协议缓冲区写入 TFRecord 文件。您可以在 Jupyter 笔记本中可视化统计数据,如下所示:
import tensorflow_data_validation as tfdv STATS_OUTPUT_PATH = '' stats = tfdv.load_statistics(STATS_OUTPUT_PATH) tfdv.visualize_statistics(stats)