Spaces:
Sleeping
Sleeping
File size: 642 Bytes
22d0a2f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import torch
import torchvision
from torch import nn
def create_effnetb1_model(num_classes:int=101):
# 1,2,3 EffNetB1의 미리 훈련된 weights, transforms, model 얻기
weights = torchvision.models.EfficientNet_B1_Weights.DEFAULT
transforms = weights.transforms()
model = torchvision.models.efficientnet_b1(weights=weights)
# 4. 기본 모델의 layer 고정
for param in model.parameters():
param.requires_grad = False
# 5. classifier head 바꾸기
model.classifier = nn.Sequential(
nn.Dropout(p=0.3, inplace=True),
nn.Linear(in_features=1280, out_features=num_classes)
)
return model, transforms
|