So I learned some new algorithms.. 🃏

meme
Author

Jaekang Lee

Published

November 27, 2020

So I learned some new algorithms.. 🃏

Learning with memes

##
Introduction
#hide_input
introduction = PILImage.create("AlgoMeme/introduction.jpeg")
display(renek.to_thumb(500,500))

#hide_input
from fastbook import *
from fastai.vision.widgets import *
##
Inception Net
#hide_input
inception = PILImage.create("AlgoMeme/inceptionNet.jpg")
display(inception.to_thumb(400,500))

##
You only look once algorithm
####
How do you detect multiple cars in a single image?
#hide_input
yolo = PILImage.create("AlgoMeme/yolo.png")
display(yolo.to_thumb(400,500))

##
Object Detection
#hide_input
detection = PILImage.create("AlgoMeme/detection.png")
display(detection.to_thumb(600,800))