-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.py
102 lines (86 loc) · 3.27 KB
/
model.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import torch
import torch.nn as nn
import torch.nn.functional as F
from torchvision import models
import timm
class BaseModel(nn.Module):
def __init__(self, num_classes):
super().__init__()
self.conv1 = nn.Conv2d(3, 32, kernel_size=7, stride=1)
self.conv2 = nn.Conv2d(32, 64, kernel_size=3, stride=1)
self.conv3 = nn.Conv2d(64, 128, kernel_size=3, stride=1)
self.dropout1 = nn.Dropout(0.25)
self.dropout2 = nn.Dropout(0.25)
self.avgpool = nn.AdaptiveAvgPool2d((1, 1))
self.fc = nn.Linear(128, num_classes)
def forward(self, x):
x = self.conv1(x)
x = F.relu(x)
x = self.conv2(x)
x = F.relu(x)
x = F.max_pool2d(x, 2)
x = self.dropout1(x)
x = self.conv3(x)
x = F.relu(x)
x = F.max_pool2d(x, 2)
x = self.dropout2(x)
x = self.avgpool(x)
x = x.view(-1, 128)
return self.fc(x)
# Custom Model Template
class Resnet18(nn.Module):
def __init__(self, num_classes=18):
super(Resnet18, self).__init__()
self.model = models.resnet18(pretrained=True)
in_fts = self.model.fc.in_features
self.model.fc = nn.Sequential(
nn.Linear(in_fts, 4096),
nn.ReLU(inplace=True),
nn.Dropout(p=0.3),
nn.Linear(4096, 120),
nn.ReLU(inplace=True),
nn.Dropout(p=0.3),
nn.Linear(120, num_classes)
)
"""
1. 위와 같이 생성자의 parameter 에 num_claases 를 포함해주세요.
2. 나만의 모델 아키텍쳐를 디자인 해봅니다.
3. 모델의 output_dimension 은 num_classes 로 설정해주세요.
"""
def forward(self, x):
"""
1. 위에서 정의한 모델 아키텍쳐를 forward propagation 을 진행해주세요
2. 결과로 나온 output 을 return 해주세요
"""
return self.model(x)
class Resnet50(nn.Module):
def __init__(self, num_classes=18):
super(Resnet50, self).__init__()
self.model = models.resnet50(pretrained=True)
in_fts = self.model.fc.in_features
self.model.fc = nn.Sequential(
nn.Linear(in_fts, 4096),
nn.ReLU(inplace=True),
nn.Dropout(p=0.3),
nn.Linear(4096, 120),
nn.ReLU(inplace=True),
nn.Dropout(p=0.3),
nn.Linear(120, num_classes)
)
"""
1. 위와 같이 생성자의 parameter 에 num_claases 를 포함해주세요.
2. 나만의 모델 아키텍쳐를 디자인 해봅니다.
3. 모델의 output_dimension 은 num_classes 로 설정해주세요.
"""
def forward(self, x):
"""
1. 위에서 정의한 모델 아키텍쳐를 forward propagation 을 진행해주세요
2. 결과로 나온 output 을 return 해주세요
"""
return self.model(x)
class EfficientNet(nn.Module):
def __init__(self, num_classes=18):
super(EfficientNet, self).__init__()
self.model = timm.create_model(model_name='efficientnet_b3', num_classes=num_classes, pretrained=True)
def forward(self, x):
return self.model(x)