Flux.jl/paper/paper.md
Mike J Innes d22270050c tweaks
2018-02-18 12:50:51 +00:00

1.7 KiB

title tags authors affiliations date bibliography
Flux: Elegant machine learning with Julia
deep learning
machine learning
natural language processing
computer vision
reinforcement learning
robotics
automatic differentiation
compiler
name orcid affiliation
Mike Innes 0000-0003-0788-0242 1
name index
Julia Computing 1
16 February 2018 paper.bib

Summary

Flux is library for machine learning (ML), written using the numerical computing language Julia [@Julia]. The package allows models to be written using Julia's simple mathematical syntax, and applies automatic differentiation (AD) to seamlessly calculate derivatives and train the model. Meanwhile, it makes heavy use of Julia's language and compiler features to carry out code analysis and make optimisations. For example, Julia's GPU compilation support [@besard:2017] can be used to JIT-compile custom GPU kernels for model layers [@CuArrays].

The machine learning community has traditionally been divided between "static" and "dynamic" frameworks that are easy to optimise and easy to use, respectively [@MLPL]. Flux blurs the line between these two approaches, combining a highly intuitive programming model with the compiler techniques needed by ML. As a result of this approach, it already supports several features not available in any other dynamic framework, such as kernel fusion [@Fusion], memory usage optimisations, importing of models via ONNX, and deployment of models to JavaScript for running in the browser.

Flux has been used heavily for natural language processing, but can also support state-of-the-art research models in areas like computer vision, reinforcement learning and robotics.

References