layout | background-class | body-class | title | summary | category | image | author | tags | github-link | github-id | featured_image_1 | featured_image_2 | accelerator | demo-model-link | order | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
hub_detail |
hub-background |
hub |
GoogLeNet |
GoogLeNet was based on a deep convolutional neural network architecture codenamed "Inception" which won ImageNet 2014. |
researchers |
googlenet1.png |
Pytorch Team |
|
pytorch/vision |
googlenet1.png |
googlenet2.png |
cuda-optional |
10 |
import torch
model = torch.hub.load('pytorch/vision:v0.10.0', 'googlenet', pretrained=True)
model.eval()
์ฌ์ ํ๋ จ๋ ๋ชจ๋ธ๋ค์ ์ฌ์ฉํ ๋๋ ๋์ผํ ๋ฐฉ์์ผ๋ก ์ ๊ทํ๋ ์ด๋ฏธ์ง๋ฅผ ์
๋ ฅ์ผ๋ก ๋ฃ์ด์ผ ํฉ๋๋ค.
์ฆ, ๋ฏธ๋ ๋ฐฐ์น(mini-batch)์ 3-์ฑ๋ RGB ์ด๋ฏธ์ง๋ค์ (3 x H x W)
์ ํํ๋ฅผ ๊ฐ์ง๋ฉฐ, ํด๋น H
์ W
๋ ์ต์ 224
์ด์์ด์ด์ผ ํฉ๋๋ค.
๊ฐ ์ด๋ฏธ์ง๋ [0, 1]
์ ๋ฒ์ ๋ด์์ ๋ถ๋ฌ์์ผ ํ๋ฉฐ, mean = [0.485, 0.456, 0.406]
๊ณผ std = [0.229, 0.224, 0.225]
์ ์ด์ฉํด ์ ๊ทํ๋์ด์ผ ํฉ๋๋ค.
๋ค์์ ์คํ ์์ ์
๋๋ค.
# ํ์ดํ ์น ์น ์ฌ์ดํธ์์ ์ด๋ฏธ์ง ๋ค์ด๋ก๋
import urllib
url, filename = ("https://github.com/pytorch/hub/raw/master/images/dog.jpg", "dog.jpg")
try: urllib.URLopener().retrieve(url, filename)
except: urllib.request.urlretrieve(url, filename)
# ์์ ์ฝ๋ (torchvision ํ์)
from PIL import Image
from torchvision import transforms
input_image = Image.open(filename)
preprocess = transforms.Compose([
transforms.Resize(256),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),
])
input_tensor = preprocess(input_image)
input_batch = input_tensor.unsqueeze(0) # ๋ชจ๋ธ์์ ๊ฐ์ ํ๋๋๋ก ๋ฏธ๋๋ฐฐ์น ์์ฑ
# gpu๋ฅผ ์ฌ์ฉํ ์ ์๋ค๋ฉด, ์๋๋ฅผ ์ํด ์
๋ ฅ๊ณผ ๋ชจ๋ธ์ gpu๋ก ์ฎ๊น
if torch.cuda.is_available():
input_batch = input_batch.to('cuda')
model.to('cuda')
with torch.no_grad():
output = model(input_batch)
# output์ shape๊ฐ [1000]์ธ Tensor ์๋ฃํ์ด๋ฉฐ, ์ด๋ ImageNet ๋ฐ์ดํฐ์
์ 1000๊ฐ์ ๊ฐ ํด๋์ค์ ๋ํ ๋ชจ๋ธ์ ํ์ ๋(confidence)๋ฅผ ๋ํ๋
print(output[0])
# output์ ์ ๊ทํ๋์ง ์์์ผ๋ฏ๋ก, ํ๋ฅ ํํ๊ธฐ ์ํด softmax ํจ์๋ฅผ ์ฒ๋ฆฌ
probabilities = torch.nn.functional.softmax(output[0], dim=0)
print(probabilities)
# ImageNet ๋ฐ์ดํฐ์
๋ ์ด๋ธ ๋ค์ด๋ก๋
!wget https://raw.githubusercontent.com/pytorch/hub/master/imagenet_classes.txt
# ์นดํ
๊ณ ๋ฆฌ(ํด๋์ค) ์ฝ๊ธฐ
with open("imagenet_classes.txt", "r") as f:
categories = [s.strip() for s in f.readlines()]
# ๊ฐ ์ด๋ฏธ์ง์ ๋ํ top 5 ์นดํ
๊ณ ๋ฆฌ ์ถ๋ ฅ
top5_prob, top5_catid = torch.topk(probabilities, 5)
for i in range(top5_prob.size(0)):
print(categories[top5_catid[i]], top5_prob[i].item())
GoogLeNet์ ์ฝ๋๋ค์ "Inception"์ผ๋ก ๋ถ๋ฆฌ๋ ์ ๊ฒฝ๋ง ์ํคํ ์ฒ์ ๊ธฐ๋ฐํ ๊น์ ํฉ์ฑ๊ณฑ ์ ๊ฒฝ๋ง์ ๋๋ค. ์ด ๋ชจ๋ธ์ ImageNet Large-Scale Visual Recognition Challenge 2014 (ILSVRC 2014) ์์ ์๋ก์ด SOTA(state of the art)๋ฅผ ๋ฌ์ฑํ์ต๋๋ค. ์ฌ์ ํ๋ จ๋ ๋ชจ๋ธ๋ก ImageNet ๋ฐ์ดํฐ์ ์์์ ๋จ์ผ-ํฌ๋กญ ๋ฐฉ์์ผ๋ก ์ค๋ฅ ๋น์จ์ ์ธก์ ํ ๊ฒฐ๊ณผ๋ ์๋์ ๊ฐ์ต๋๋ค.
๋ชจ๋ธ ๊ตฌ์กฐ | Top-1 ์ค๋ฅ | Top-5 ์ค๋ฅ |
---|---|---|
googlenet | 30.22 | 10.47 |