convnetjs
convnetjs copied to clipboard
Deep Learning in Javascript. Train Convolutional Neural Networks (or ordinary ones) in your browser.
I made a library similar to this. This library has Deconv layers and other new features that not even convnetjs has. It also let's you utilize your GPU. It also...
Hello, On the page titled ["Image Painting"](https://cs.stanford.edu/people/karpathy/convnetjs/demo/image_regression.html) I wanted to suggest passing the (x, y) points through a Fourier feature mapping. The details on this are described here in this...
Currently it assumes the input layer is 1x1xINPUT_LENGTH. This does not support 2D or 3D inputs, my changes allow the user to specify the shape.
The basic example provided here does not seem to work because the output was always 0: https://cs.stanford.edu/people/karpathy/convnetjs/docs.html Proof: I tried changing this line: var reward = action === 0 ?...
Is there any way to read Brain data from stored JSON? toJSON + fromJSON combo doesn't seem to work.
Hi, Thanks a ton for the fantastic library! I'm using a deep network for NLP, with a varying input size of 12000 down to 4000 nodes. I've made sure to...
There is a small typo in src/convnet_layers_nonlinearities.js. Should read `nonlinearity` rather than `nnonlinearity`.
While extending my knowledge of neural networks, I implemented a neural network library in Javascript. It has capabilities similar to ConvNetJS, but both training and testing are 4x faster (while...
Are there plans for implementing BatchNorm anytime soon? (Or did I miss an existing implementation?)