structure updates
This commit is contained in:
parent
2e7971fb6d
commit
1d2edbc3f3
13
docs/make.jl
13
docs/make.jl
|
@ -7,12 +7,13 @@ makedocs(modules=[Flux],
|
|||
sitename = "Flux",
|
||||
assets = ["../flux.css"],
|
||||
pages = ["Home" => "index.md",
|
||||
"Getting Started" => [
|
||||
"Basics" => "manual/basics.md",
|
||||
"Custom Layers" => "manual/custom.md",
|
||||
"Recurrence" => "manual/recurrent.md",
|
||||
"Debugging" => "manual/debugging.md"],
|
||||
"Contributing & Help" => "contributing.md"])
|
||||
"First Steps" => "manual/basics.md",
|
||||
"Recurrence" => "manual/recurrent.md",
|
||||
"Debugging" => "manual/debugging.md",
|
||||
"In Action" => [
|
||||
"Logistic Regression" => "examples/logreg.md"]
|
||||
"Contributing & Help" => "contributing.md",
|
||||
"Internals"])
|
||||
|
||||
deploydocs(
|
||||
repo = "github.com/MikeInnes/Flux.jl.git",
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
# Logistic Regression with MNIST
|
||||
|
||||
[WIP]
|
|
@ -4,6 +4,6 @@ Flux is a high-level interface for machine learning, implemented in Julia.
|
|||
|
||||
Flux aims to be an intuitive and powerful notation, close to the mathematics, that provides advanced features like auto-unrolling and closures. Simple models are trivial, while the most complex architectures are tractable, taking orders of magnitude less code than in other frameworks. Meanwhile, the Flux compiler provides excellent error messages and tools for debugging when things go wrong.
|
||||
|
||||
So what's the catch? Flux is at an early "working prototype" stage; many things work but the API is still in a state of... well, it might change.
|
||||
So what's the catch? Flux is at an early "working prototype" stage; many things work but the API is still in a state of... well, it might change. Also, this documentation is pretty incomplete.
|
||||
|
||||
If you're interested to find out what *does* work, read on!
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
# Custom Layers
|
||||
|
||||
[WIP]
|
Loading…
Reference in New Issue