We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d4703 commit a056facCopy full SHA for a056fac
examples/visual_recognition_v4.py
@@ -37,6 +37,13 @@
37
]).get_result()
38
print(json.dumps(training_data, indent=2))
39
40
+# update object metadata
41
+updated_object_metadata = service.update_object_metadata(
42
+ collection_id=collection_id,
43
+ object='giraffe training data',
44
+ new_object='updated giraffe training data').get_result()
45
+print(json.dumps(updated_object_metadata, indent=2))
46
+
47
# train collection
48
train_result = service.train(collection_id).get_result()
49
print(json.dumps(train_result, indent=2))
0 commit comments