Datawhale零基础入门CV_Task5 模型集成
程序员文章站
2022-05-27 16:32:08
...
1 思维导图
2 补充内容
1 Dropout部分代码
# 定义模型
class SVHN_Model1(nn.Module):
def __init__(self):
super(SVHN_Model1, self).__init__()
# CNN提取特征模块
self.cnn = nn.Sequential(
nn.Conv2d(3, 16, kernel_size=(3, 3), stride=(2, 2)),
nn.ReLU(),
nn.Dropout(0.25),
nn.MaxPool2d(2),
nn.Conv2d(16, 32, kernel_size=(3, 3), stride=(2, 2)),
nn.ReLU(),
nn.Dropout(0.25),
nn.MaxPool2d(2),
)
#
self.fc1 = nn.Linear(32*3*7, 11)
self.fc2 = nn.Linear(32*3*7, 11)
self.fc3 = nn.Linear(32*3*7, 11)
self.fc4 = nn.Linear(32*3*7, 11)
self.fc5 = nn.Linear(32*3*7, 11)
self.fc6 = nn.Linear(32*3*7, 11)
def forward(self, img):
feat = self.cnn(img)
feat = feat.view(feat.shape[0], -1)
c1 = self.fc1(feat)
c2 = self.fc2(feat)
c3 = self.fc3(feat)
c4 = self.fc4(feat)
c5 = self.fc5(feat)
c6 = self.fc6(feat)
return c1, c2, c3, c4, c5, c6
2 TTA部分代码
def predict(test_loader, model, tta=10):
model.eval()
test_pred_tta = None
# TTA 次数
for _ in range(tta):
test_pred = []
with torch.no_grad():
for i, (input, target) in enumerate(test_loader):
c0, c1, c2, c3, c4, c5 = model(data[0])
output = np.concatenate([c0.data.numpy(), c1.data.numpy(),
c2.data.numpy(), c3.data.numpy(),
c4.data.numpy(), c5.data.numpy()], axis=1)
test_pred.append(output)
test_pred = np.vstack(test_pred)
if test_pred_tta is None:
test_pred_tta = test_pred
else:
test_pred_tta += test_pred
return test_pred_tta
3 学习资料
推荐阅读
-
Datawhale零基础入门NLP赛事 - Task1 赛题理解
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale零基础入门数据挖掘-Task4 建模调参笔记
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale零基础入门数据挖掘-Task4建模调参
-
Datawhale 零基础入门数据挖掘-Task4 建模调参
-
Datawhale 零基础入门数据挖掘-Task3 特征工程