You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UI won't work. Probably because the serialization and deserialization of metadata converts string to boolean, and when parsing the actual data it does not do the same.
The text was updated successfully, but these errors were encountered:
For example, if your metadata is like:
metadata = {
'outputs' : [{
'type': 'confusion_matrix',
'storage': 'gcs',
'format': 'csv',
'schema': [
{'name': 'target', 'type': 'CATEGORY'},
{'name': 'predicted', 'type': 'CATEGORY'},
{'name': 'count', 'type': 'NUMBER'},
],
'source': cm_file,
'labels': ['True', 'False'],
}]
}
And if your Data is like:
True, True, 100
True, False, 20
False, True, 10,
False, False, 200
UI won't work. Probably because the serialization and deserialization of metadata converts string to boolean, and when parsing the actual data it does not do the same.
The text was updated successfully, but these errors were encountered: