DEV Community

Discussion on: Handwritten Digit Recognition Using Convolutional Neural Networks

Collapse
 
wmeddie profile image
Eduardo Gonzalez

Raunak

It works very well with GPUs. We use them all the time.

DL4J comes with an image pre-processing transform API that you can see in action here:

github.com/deeplearning4j/dl4j-exa...

DL4J also comes with many of the famous networks many of which actually come from Keras using the model import feature. Just add deeplearning4j-zoo to your project and use the TransferLearning class to edit the graph like so:

github.com/deeplearning4j/dl4j-exa...

Collapse
 
rrampage profile image
Raunak Ramakrishnan

Thanks Eduardo. The model import from keras looks very useful.