Flux.jl/docs/src/index.md

15 lines
747 B
Markdown
Raw Normal View History

2017-09-07 07:16:45 +00:00
# Flux: The Julia Machine Learning Library
2017-09-07 05:38:41 +00:00
2017-09-08 21:34:58 +00:00
Flux is a library for machine learning. It comes "batteries-included" with many useful tools built in, but also lets you use the full power of the Julia language where you need it. The whole stack is implemented in clean Julia code (right down to the [GPU kernels](https://github.com/FluxML/CuArrays.jl)) and any part can be tweaked to your liking.
2017-09-07 05:38:41 +00:00
# Installation
Install [Julia 0.6.0 or later](https://julialang.org/downloads/), if you haven't already.
```julia
Pkg.add("Flux")
Pkg.test("Flux") # Check things installed correctly
```
2017-09-11 18:45:02 +00:00
Start with the [basics](./models/basics.html). The [model zoo](https://github.com/FluxML/model-zoo/) is also a good starting point for many common kinds of models.