When using TuriCreate in a Jupyter notebook, explore() method for images does not work very well. I created a helper method that shows me the images and their labels.
# shorthand
# sframe[3]['image'].show()
# image_testing_SFrame[0:5]['image'].explore()
sframe = image_testing_SFrame[0:5] # show first 5 records
def show_images(sframe, image_column="image", label_column="label"):
for subset_dictionary in sframe:
image = subset_dictionary[image_column]
print(subset_dictionary[label_column])
image.show()
show_images(sframe, image_column="image", label_column="label")
show_images(sframe)