2

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?

Mehdi
  • 4,202
  • 5
  • 20
  • 36
Prashant Bhanarkar
  • 930
  • 3
  • 14
  • 32

2 Answers2

1

Set the show result to canvas in ipython notebook

graphlab.canvas.set_target('ipynb')

sframe['image'].show()

a mit
  • 31
  • 4
0

Use keyword browser instead ipynb as below stated

graphlab.canvas.set_target('browser')
barbsan
  • 3,418
  • 11
  • 21
  • 28
Parvez
  • 61
  • 1
  • 3