turicreate
turicreate copied to clipboard
Turi Create Visualization image previews not displaying
Code
import turicreate as tc
# Load the starter images
starter_images = tc.SFrame({'image':[tc.Image('some.png')],
'label':['some-label']})
synthetic_images = tc.one_shot_object_detector.util.preview_synthetic_training_data(starter_images, 'label')
synthetic_images.explore()
Result

Expected result would be too see an enlarged preview of that image.
As a workaround, you can call .show() on images you want to see.