concat network
2020.08.27 01:19
https://discuss.pytorch.org/t/concatenate-layer-output-with-additional-input-data/20462
댓글 3
-
WHRIA
2020.09.05 12:08
-
WHRIA
2020.09.05 12:17
class MyModelA(nn.Module): def __init__(self): super(MyModelA, self).__init__() self.fc1 = nn.Linear(10, 2) def forward(self, x): x = self.fc1(x) return x class MyModelB(nn.Module): def __init__(self): super(MyModelB, self).__init__() self.fc1 = nn.Linear(20, 2) def forward(self, x): x = self.fc1(x) return x class MyEnsemble(nn.Module): def __init__(self, modelA, modelB): super(MyEnsemble, self).__init__() self.modelA = modelA self.modelB = modelB self.classifier = nn.Linear(4, 2) def forward(self, x1, x2): x1 = self.modelA(x1) x2 = self.modelB(x2) x = torch.cat((x1, x2), dim=1) x = self.classifier(F.relu(x)) return x # Create models and load state_dicts modelA = MyModelA() modelB = MyModelB() # Load state dicts modelA.load_state_dict(torch.load(PATH)) modelB.load_state_dict(torch.load(PATH)) model = MyEnsemble(modelA, modelB) x1, x2 = torch.randn(1, 10), torch.randn(1, 20) output = model(x1, x2)
-
WHRIA
2020.10.08 14:08
https://gist.github.com/andrewjong/6b02ff237533b3b2c554701fb53d5c4d
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
1699 | bay trail ubuntu 20.04 [1] | WHRIA | 2020.12.24 | 90 |
1698 | 32 bit UEFI [6] | WHRIA | 2020.12.24 | 257 |
1697 | sroc [1] | WHRIA | 2020.12.10 | 104 |
1696 | test | WHRIA | 2020.12.03 | 81 |
1695 | dkms for r8125 | WHRIA | 2020.11.12 | 190 |
1694 | unattended upgrade | WHRIA | 2020.11.01 | 578 |
1693 | pytorch pretrained | WHRIA | 2020.10.28 | 180 |
1692 | steamlit | WHRIA | 2020.10.15 | 238 |
1691 | sample size | WHRIA | 2020.10.13 | 4285 |
1690 | Transformer | WHRIA | 2020.10.09 | 178 |
1689 | file lock | WHRIA | 2020.09.22 | 216 |
1688 | onnx broswer | WHRIA | 2020.09.15 | 59 |
1687 | fda 인증 | WHRIA | 2020.09.03 | 243 |
1686 | ubuntu cuda nvidia-smi | WHRIA | 2020.08.29 | 976 |
» | concat network [3] | WHRIA | 2020.08.27 | 189 |
https://discuss.pytorch.org/t/combining-trained-models-in-pytorch/28383/2