Answers:
MXNet Julia软件包-Julia中灵活高效的深度学习
https://github.com/dmlc/MXNet.jl
优点
缺点
截至2016年10月,Julia还有一个Tensorflow包装器:
只是添加一个更新的(2019)答案: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.
例如:
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(...))
还有一个更新的库是Knet.jl。它会做一些事情,例如在后台使用GPU。