apple / turicreate

Turi Create simplifies the development of custom machine learning models.
BSD 3-Clause "New" or "Revised" License
11.19k stars 1.14k forks source link

Turi Create Visualization image previews not displaying #3414

Open taylorjdawson opened 3 years ago

taylorjdawson commented 3 years ago

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 image

Expected result would be too see an enlarged preview of that image.

TobyRoseman commented 3 years ago

As a workaround, you can call .show() on images you want to see.