0
Simple multi-task network can be done here.しかし、私はこのようなものが欲しいenter image description here。 今、私は以下のようにモデルを構築:torch7でマルチタスク学習を行うには?
model = nn.Sequential()
model:add(nn.Linear(3,5))
prl1 = nn.ConcatTable()
prl1:add(nn.Linear(5,1))
prl2 = nn.ConcatTable()
prl2:add(nn.Linear(5,1))
prl2:add(nn.Linear(5,1))
prl1:add(prl2)
model:add(prl1)
そして、私の出力は次のとおりです。
input = torch.rand(5,3)
output = model:forward(input)
output
{
1 : DoubleTensor - size: 5x1
2 :
{
1 : DoubleTensor - size: 5x1
2 : DoubleTensor - size: 5x1
}
}
どのように私は私の基準を構築する必要がありますか?