13

I have been using this library for basic neural network construction and analysis.

However, it does not have support for building multi-layered neural networks, etc.

So, I would like to know of any nice libraries for doing advanced neural networks and Deep Learning in Julia.

Dawny33
  • 8,476
  • 12
  • 49
  • 106

5 Answers5

9

MXNet Julia Package - flexible and efficient deep learning in Julia

https://github.com/dmlc/MXNet.jl

Pros

  • Fast
  • Scales up to multi GPUs and distributed setting with auto parallelism.
  • Lightweight, memory efficient and portable to smart devices.
  • Automatic Differentiation

Cons

itdxer
  • 219
  • 1
  • 6
7

Mocha.jl - Mocha is a Deep Learning framework for Julia, inspired by the C++ framework Caffe.

Project with good documentation and examples. Can be run on CPU and GPU backend.

5

Just to add a more recent (2019) answer: Flux.

Flux is an elegant approach to machine learning. It's a 100% pure-Julia stack,
and provides lightweight abstractions on top of Julia's native GPU and
AD support. Flux makes the easy things easy while remaining fully hackable.

For example:

model = Chain(
  Dense(768, 128, σ),
  LSTM(128, 256),
  LSTM(256, 128),
  Dense(128, 10),
  softmax)

loss(x, y) = crossentropy(model(x), y)

Flux.train!(loss, data, ADAM(...))
Wayne
  • 336
  • 3
  • 4
3

As of Oct 2016 there's also a Tensorflow wrapper for Julia.

Zephyr
  • 997
  • 4
  • 11
  • 20
davidparks21
  • 433
  • 1
  • 4
  • 18
1

One newer library to look at as well is Knet.jl. It will do things like use GPUs under the hood.

Zephyr
  • 997
  • 4
  • 11
  • 20