如何在 tensorflow 中查看模式元数据的所有可能选项?
How to see all the possible options for schema metadata in tensorflow?
我正在使用 tensorflow 数据验证,我正在尝试围绕我的数据集构建模式。我已经构建了初始模式,我可以在记事本中 see/edit 它们,但我很难找到一个资源来准确显示我可以在文件中为给定数据类型设置哪些参数(即最小值或最大值或数据形状)。
有没有人知道我可以用来进一步编辑我的架构文件的好资源或综合架构?
模式只是一种协议缓冲区消息,它们在 TensorFlow Metadata. You can find the protocol buffers definition in tensorflow_metadata/proto/v0/schema.proto
中定义,它描述和记录了所有可能的属性和选项。
我正在使用 tensorflow 数据验证,我正在尝试围绕我的数据集构建模式。我已经构建了初始模式,我可以在记事本中 see/edit 它们,但我很难找到一个资源来准确显示我可以在文件中为给定数据类型设置哪些参数(即最小值或最大值或数据形状)。
有没有人知道我可以用来进一步编辑我的架构文件的好资源或综合架构?
模式只是一种协议缓冲区消息,它们在 TensorFlow Metadata. You can find the protocol buffers definition in tensorflow_metadata/proto/v0/schema.proto
中定义,它描述和记录了所有可能的属性和选项。