【发布时间】:2017-07-21 03:09:05
【问题描述】:
我正在尝试解决这个问题很长一段时间,但仍然无法提出解决方案,也许有人可以在这里帮助我。我有以下 AAABBB 神经网络输入表:
{
1 :
{
1 : DoubleTensor - size: 32x200
2 : DoubleTensor - size: 32x200
3 : DoubleTensor - size: 32x200
}
2 :
{
1 : DoubleTensor - size: 32x54
2 : DoubleTensor - size: 32x54
3 : DoubleTensor - size: 32x54
}
}
上表经过预处理后需要转化为嵌套 ABABAB输入表:
{
1 :
{
1 : DoubleTensor - size: 32x200
2 : DoubleTensor - size: 32x54
}
2 :
{
1 : DoubleTensor - size: 32x200
2 : DoubleTensor - size: 32x54
}
3 :
{
1 : DoubleTensor - size: 32x200
2 : DoubleTensor - size: 32x54
}
}
如何使用Torch table layers 将AAABBB 表转换为ABABAB 嵌套 表在 网络内?
【问题讨论】:
标签: machine-learning lua torch