We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Make TensorSpace's layer can be created by directly given the shape. For example:
let depthwiseConv2d = new TSP.DepthwiseConv2d({ shape: [28, 28, 32], name: "depthwise_1" });
The text was updated successfully, but these errors were encountered:
add shape config for 3d layers (#152)
707e69b
shape constructor for 1d and 2d layers (#152)
bf517d0
shape constructor for globalpooling 1d and 2d (#152)
8d1dec1
For 1d layer, use config:
{ shape: [ 28 ] }
For 2d layer, use config:
{ shape: [ 28, 28 ] }
For 3d layer, use config:
{ shape: [ 28, 28, 3 ] }
Sorry, something went wrong.
syt123450
No branches or pull requests
Make TensorSpace's layer can be created by directly given the shape. For example:
The text was updated successfully, but these errors were encountered: