2017-01-16 00:46:50 +00:00
|
|
|
using Documenter, Flux
|
|
|
|
|
2017-01-17 20:04:01 +00:00
|
|
|
makedocs(modules=[Flux],
|
2017-01-17 20:24:53 +00:00
|
|
|
doctest = false,
|
2017-01-16 00:46:50 +00:00
|
|
|
format = :html,
|
2017-01-16 15:34:14 +00:00
|
|
|
analytics = "UA-36890222-9",
|
2017-01-17 20:04:01 +00:00
|
|
|
sitename = "Flux",
|
2017-01-17 20:24:49 +00:00
|
|
|
assets = ["../flux.css"],
|
2017-01-18 00:39:00 +00:00
|
|
|
pages = ["Home" => "index.md",
|
2017-01-18 23:19:30 +00:00
|
|
|
"Building Models" => [
|
2017-02-01 12:50:24 +00:00
|
|
|
"Model Building Basics" => "models/basics.md",
|
2017-02-02 07:46:54 +00:00
|
|
|
"Model Templates" => "models/templates.md",
|
2017-02-01 12:50:24 +00:00
|
|
|
"Recurrence" => "models/recurrent.md",
|
|
|
|
"Debugging" => "models/debugging.md"],
|
2017-02-20 10:38:28 +00:00
|
|
|
"Other APIs" => [
|
2017-02-20 11:00:50 +00:00
|
|
|
"Batching" => "apis/batching.md",
|
|
|
|
"Backends" => "apis/backends.md"],
|
2017-01-18 12:02:32 +00:00
|
|
|
"In Action" => [
|
2017-02-28 16:14:07 +00:00
|
|
|
"Logistic Regression" => "examples/logreg.md",
|
2017-02-28 14:49:23 +00:00
|
|
|
"Char RNN" => "examples/char-rnn.md"],
|
2017-02-01 12:50:24 +00:00
|
|
|
"Contributing & Help" => "contributing.md",
|
2017-01-18 12:43:11 +00:00
|
|
|
"Internals" => "internals.md"])
|
2017-01-16 00:46:50 +00:00
|
|
|
|
|
|
|
deploydocs(
|
|
|
|
repo = "github.com/MikeInnes/Flux.jl.git",
|
|
|
|
target = "build",
|
|
|
|
osname = "linux",
|
|
|
|
julia = "0.5",
|
|
|
|
deps = nothing,
|
|
|
|
make = nothing)
|