尝试使用自定义视觉 SDK 上传多个训练图像
for i in range(0,len(split_input)):
img_byte=connection_blob(confidential) #first I download images from my blob with a custom function, images names are in list split_input
image_list.append(ImageFileCreateEntry(name=split_input[i], contents=img_byte, tag_ids=[hemlock_tag])) #Then I create the list of images
for i in range(0,len(image_list)):
upload_result = trainer.create_images_from_files(model_id, images=[image_list[i]],raw=True) #I push data on custom vision
我的问题是有时会出错并且只发送一些图像。例如,我想发送 20 张照片,但只发送了 10 张...
知道在哪里寻找解决问题的方法吗?
编辑:即使当我尝试一一发送图像时,它们也不会上传
UYOU
相关分类