diff --git a/docs/make.jl b/docs/make.jl index 5b81f617..b48564ba 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -6,7 +6,10 @@ makedocs(modules=Module[Flux], analytics = "UA-36890222-9", sitename="Flux", pages = [ - "Home" => "index.md", + "Home" => "index.md", + "Getting Started" => [ + "Basics" => "mnist.md" + ] ]) deploydocs( diff --git a/docs/src/index.md b/docs/src/index.md index 23a30b30..6dc705e1 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1 +1,9 @@ # Flux + +## Charging Ion Capacitors + +Flux is a high-level API for machine learning, implemented in Julia. + +Flux aims to provide a concise and expressive syntax for architectures that are hard to express within other frameworks. The notation should be familiar and extremely close to what you'd find in a paper or description of the model. + +The current focus is on ANNs with TensorFlow or MXNet as a backend. diff --git a/docs/src/mnist.md b/docs/src/mnist.md new file mode 100644 index 00000000..642960a4 --- /dev/null +++ b/docs/src/mnist.md @@ -0,0 +1 @@ +# MNIST