The purpose of this post is to summarize the content of cs231n lecture for me, so it could be a little bit unkind for people who didn’t watch the video . In addition, I omitted some contents that I don’t think it’s important enough, so use this article as just an assistance. Prologure Obstacles for Image Classfication For below reasons! Obstacle is that cats are too cute..! There Is No Magic in Image Classification There is no function like below. def classify_image (image) : # Some magic here? return class_label Instead, image classification functions follow these two steps. function1 : inputs images, outputs model function2 : inputs model, predicts images Algorithms for Image Classification Simple Nearest Algorithm It’s literally simple. All you have to do to use this algorithm is just to calculate the mean value of the gap of each spot. If the calculated mean value is low, this algorithm says the two images are similar. Limitation K-near...
Though now I don't know, someday I will dono.