How To Get Image In Jupyter Notebook

how to get image in jupyter notebook
from IPython import display
display.Image("./image.png")
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
![title](img/picture.png)
imbade image to jupyter notebook
<img src="images/grad_summary.png" style="width:600px;height:300px;">

Leave a Comment