This project is a simple Scala porting of deeplearning4j-example.
The main purpose of this project is:
-
Show example of how to use deeplearning4j Java API from scala
-
Provide a sbt project template depends on DL4J
Every examples in this demonstration directly calls Java APIs of DL4J. If you strongly want to write codes in the scala manner, you should consider to use deeplearning4s.
Note that currently dl4j-spark-examples
are not merged yet.
This repository has 3 project. To choose and run a project, followings commands are useful.
-
dl4j examples
sbt "; project dl4j_example; run"
-
dl4j cuda specific examples
sbt "; project dl4j_cuda_specific_example; run"
-
datavec examples
sbt "; project datavec_example; run"
Repository of Deeplearning4J neural net examples:
- MLP Neural Nets
- Convolutional Neural Nets
- Recurrent Neural Nets
- TSNE
- Word2Vec & GloVe
- Anomaly Detection
For more information, check out deeplearning4j.org and its JavaDoc.
If you notice issues, please log them, and if you want to contribute, submit a pull request. Input is welcome here.