There is a problem with this line:
|
var svol = new convnetjs.Vol(1, 1, this.net_inputs); |
the shape of the input vector is basically hardcoded here when given to the network's forward function. Which makes it all break apart in line
|
if(oy>=0 && oy<V_sy && ox>=0 && ox<V_sx) { |
Where we try to check for existence of those dimensions.
There is a problem with this line:
convnetjs/build/deepqlearn.js
Line 142 in 4c3358a
the shape of the input vector is basically hardcoded here when given to the network's forward function. Which makes it all break apart in line
convnetjs/src/convnet_layers_dotproducts.js
Line 67 in 4c3358a
Where we try to check for existence of those dimensions.