Prashant Bhanarkar
Prashant Bhanarkar

Reputation: 960

graphlab not showing column image

I have a image column in a SFrame along with an image_array column.

when I do

sframe['image'].show() 

instead of showing the actual images it shows summary of the image column along with value,count and percent. How should I show the actual image when I call the show method?

Upvotes: 2

Views: 443

Answers (2)

Parvez
Parvez

Reputation: 86

Use keyword browser instead ipynb as below stated

graphlab.canvas.set_target('browser')

Upvotes: 0

a mit
a mit

Reputation: 31

Set the show result to canvas in ipython notebook

graphlab.canvas.set_target('ipynb')

sframe['image'].show()

Upvotes: 1

Related Questions