google.protobuf.json_format.ParseError: Message type "tensorflow_datasets.DatasetInfo" has no field named "fileFormat".
时间: 2024-01-11 16:05:39 浏览: 226
tensorflow报错
This error occurs because the protocol buffer message type "tensorflow_datasets.DatasetInfo" does not have a field named "fileFormat", but the JSON input being parsed contains a key with that name.
To fix this error, you can either modify the JSON input to remove the "fileFormat" key or modify the protocol buffer message type to include a field named "fileFormat".
阅读全文