Added failing test for convolutional1D with input (16,1)

This commit is contained in:
2016-11-07 14:08:15 +08:00
parent dcad54d47b
commit 5c91ed8eb7
3 changed files with 85 additions and 2 deletions
+6 -1
View File
@@ -28,7 +28,12 @@ describe('convolutional layer: Convolution1D', function () {
inputShape: [8, 3],
kernelShape: [2, 7],
attrs: { activation: 'tanh', borderMode: 'same', subsampleLength: 1, bias: true }
}
},
{
inputShape: [16, 1],
kernelShape: [3, 3],
attrs: { activation: 'linear', borderMode: 'same', subsampleLength: 1, bias: true }
},
]
before(function () {