Deeplearning4j

Deeplearning4j
Original author(s) Adam Gibson
Developer(s) various
Stable release
0.0.4 / 24 August 2015 (2015-08-24)
Development status Active
Written in Java, Scala, CUDA, C, C++
Operating system Linux, OS X, Windows, Android
Platform Cross-platform
Available in English
Type Natural language processing, deep learning, machine vision, artificial intelligence
License Apache 2.0
Website deeplearning4j.org

Deeplearning4j is a deep learning programming library written for Java and the Java virtual machine (JVM)[1][2] and a computing framework with wide support for deep learning algorithms.[3] Deeplearning4j includes implementations of the restricted Boltzmann machine, deep belief net, deep autoencoder, stacked denoising autoencoder and recursive neural tensor network, word2vec, doc2vec, and GloVe. These algorithms all include distributed parallel versions that integrate with Apache Hadoop and Spark.[4]

Deeplearning4j is open-source software released under Apache License 2.0,[5] developed mainly by a machine learning group in San Francisco led by Adam Gibson.[6][7] It is supported commercially by the startup Skymind.

Introduction

Deeplearning4j relies on the widely used programming language, Java, though it is compatible with Clojure and includes a Scala application programming interface (API). It is powered by its own open-source numerical computing library, ND4J, and works with both central processing units (CPUs) and graphics processing units (GPUs).[8][9]

Deeplearning4j has been used in several commercial and academic applications. The code is hosted on GitHub.[10] A support forum is maintained on Gitter.[11]

The framework is composable, meaning shallow neural nets such as restricted Boltzmann machines, convolutional nets, autoencoders, and recurrent nets can be added to one another to create deep nets of varying types. It also has extensive visualization tools,[12] and a computation graph.[13]

Distributed

Training with Deeplearning4j occurs in a cluster. Neural nets are trained in parallel via iterative reduce, which works on Hadoop-YARN and on Spark.[6][14] Deeplearning4j also integrates with CUDA kernels to conduct pure GPU operations, and works with distributed GPUs.

Scientific computing for the JVM

Deeplearning4j includes an n-dimensional array class using ND4J that allows scientific computing in Java and Scala, similar to the functions that NumPy provides to Python. It's effectively based on a library for linear algebra and matrix manipulation in a production environment.

DataVec vectorization library for machine-learning

DataVec vectorizes various file formats and data types using an input/output format system similar to Hadoop's use of MapReduce; that is, it turns various data types into columns of scalars termed vectors. DataVec is designed to vectorize CSVs, images, sound, text, video, and time series.

Text and NLP

Deeplearning4j includes a vector space modeling and topic modeling toolkit, implemented in Java and integrating with parallel GPUs for performance. It is designed to handle large text sets.

Deeplearning4j includes implementations of term frequency–inverse document frequency (tf–idf), deep learning, and Mikolov's word2vec algorithm,[15] doc2vec, and GloVe, reimplemented and optimized in Java. It relies on t-distributed stochastic neighbor embedding (t-SNE) for word-cloud visualizations.

Real-world use cases and integrations

Real-world use cases for Deeplearning4j include fraud detection for the financial sector,[16] anomaly detection in industries such as manufacturing, recommender systems in e-commerce and advertising,[17] and image recognition. Deeplearning4j has integrated with other machine-learning platforms such as RapidMiner and Prediction.io.[18]

Related libraries

See also

References

External links

This article is issued from Wikipedia - version of the 11/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.