If you have read this book, please leave a review on Amazon.com. Potential readers can then use your unbiased opinion to help them make purchase decisions. Thank you. The $5 campaign runs from December 15th 2020 to January 13th 2021.
This is a code repository for the upcoming book "Java Deep Learning cookbook" sponsored by Packt Publishing. We use and promote deeplearning4j library for all use-cases in this book. Official deeplearning4j version targeted in this cookbook is 1.0.0-beta3. For the same reason, some of the methods or approaches discussed in this cookbook may get deprecated in their newer versions. So, be sure to refer their latest API documentation. You may use newer versions that has bug fixes and new features.
Update
Java deep learning cookbook is released on November 8, 2019.
Each chapter will have separate source folder where all examples are stored for the particular chapter. For example, if you want to import the code for chapter 2, navigate to the chapter directory first and then import the directory sourceCode/cookbook-app in your IDE. You should also see pom.xml located there.
- Navigate to the sourceCode root directory.
- Open as a Maven project and compile.
mvn clean install
If you face issues with Intellij being not able to detect dependencies or any workspace issues, try running the below command:
mvn idea:idea
Delete workspace.xml under .idea directory if problem persists.
- Introduction to Deep Learning in Java
- Data Extraction, Transform and Loading
- Building Deep Neural Networks for Binary classification
- Building Convolutional Neural Networks
- Implementing NLP
- Constructing LTSM Network for time series
- Constructing LTSM Neural network for sequence classification
- Performing Anomaly detection on unsupervised data
- Using RL4J for Reinforcement learning
- Developing applications in distributed environment
- Applying Transfer Learning to network models
- Benchmarking and Neural Network Optimization