how to get image in jupyter notebook
from IPython import display
display.Image("./image.png")
Source:ealizadeh.com
show image jupyter notebook
#If you want it on a "Code" cell
from IPython.display import Image
Image("img/picture.png")
#If you want it on a "Markdown" cell

imbade image to jupyter notebook
<img src="images/grad_summary.png" style="width:600px;height:300px;">