update paper

This commit is contained in:
Mike Innes 2018-04-14 02:01:22 +01:00
parent 9d7164f15f
commit 0fd701c7fe
2 changed files with 22 additions and 14 deletions

View File

@ -17,14 +17,6 @@
url = {http://arxiv.org/abs/1712.03112},
}
@online{CuArrays,
author = {Mike Innes},
title = {Generic GPU Kernels},
year = 2017,
url = {http://mikeinnes.github.io/2017/08/24/cudanative.html},
urldate = {2018-02-16}
}
@online{MLPL,
author = {Mike Innes and others},
title = {On Machine Learning and Programming Languages},
@ -33,10 +25,26 @@
urldate = {2018-02-16}
}
@online{Fusion,
author = {Steven G. Johnson},
title = {More Dots: Syntactic Loop Fusion in Julia},
@online{CuArrays,
author = {Mike Innes and others},
title = {Generic GPU Kernels},
year = 2017,
url = {https://julialang.org/blog/2017/01/moredots},
url = {http://mikeinnes.github.io/2017/08/24/cudanative.html},
urldate = {2018-02-16}
}
@online{Zoo,
author = {Mike Innes and others},
title = {Flux Model Zoo},
year = 2018,
url = {https://github.com/FluxML/model-zoo/},
urldate = {2018-02-16}
}
@online{Minibatch,
author = {James Bradbury},
title = {Minibatch.jl},
year = 2018,
url = {https://github.com/jekbradbury/Minibatch.jl},
urldate = {2018-02-16}
}

View File

@ -24,8 +24,8 @@ bibliography: paper.bib
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.
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. This enables research into advanced compiler transforms such as batching [@Minibatch] without changing any user code.
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.
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. Many examples of such models can be found in the model zoo [@Zoo].
# References