-
-
Save icebeam7/06d35320f1b348e9705754ae630a8378 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for batchOfImages in batchedImages: | |
upload_result = trainer.create_images_from_files(project.id, ImageFileCreateBatch(images=batchOfImages)) | |
if not upload_result.is_batch_successful: | |
print("Image batch upload failed.") | |
for image in upload_result.images: | |
print("Image status: ", image.status) | |
else: | |
print("Batch uploaded successfully") | |
print("Done uploading") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment