Comment obtenir l'image dans Jupyter Notebook
from IPython import display
display.Image("./image.png")
M.U
from IPython import display
display.Image("./image.png")
#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)
<img src="images/grad_summary.png" style="width:600px;height:300px;">