2017-10-18 10:09:33 +00:00
|
|
|
using Documenter, Flux, NNlib
|
2017-01-16 00:46:50 +00:00
|
|
|
|
2017-10-18 10:09:33 +00:00
|
|
|
makedocs(modules=[Flux, NNlib],
|
2019-02-14 18:29:27 +00:00
|
|
|
doctest = true,
|
2017-01-16 15:34:14 +00:00
|
|
|
analytics = "UA-36890222-9",
|
2017-01-17 20:04:01 +00:00
|
|
|
sitename = "Flux",
|
2019-01-10 13:54:17 +00:00
|
|
|
# Uncomment below for local build
|
|
|
|
#format = Documenter.HTML(prettyurls = false),
|
|
|
|
assets = ["assets/flux.css"],
|
2017-01-18 00:39:00 +00:00
|
|
|
pages = ["Home" => "index.md",
|
2017-09-10 01:01:19 +00:00
|
|
|
"Building Models" =>
|
2017-09-07 05:49:46 +00:00
|
|
|
["Basics" => "models/basics.md",
|
2017-09-08 21:52:41 +00:00
|
|
|
"Recurrence" => "models/recurrence.md",
|
2018-02-09 19:00:26 +00:00
|
|
|
"Regularisation" => "models/regularisation.md",
|
2017-10-18 14:30:05 +00:00
|
|
|
"Model Reference" => "models/layers.md"],
|
2017-09-10 01:01:19 +00:00
|
|
|
"Training Models" =>
|
|
|
|
["Optimisers" => "training/optimisers.md",
|
|
|
|
"Training" => "training/training.md"],
|
2017-09-28 10:08:37 +00:00
|
|
|
"One-Hot Encoding" => "data/onehot.md",
|
|
|
|
"GPU Support" => "gpu.md",
|
2018-03-05 23:52:04 +00:00
|
|
|
"Saving & Loading" => "saving.md",
|
2018-05-07 15:12:55 +00:00
|
|
|
"Internals" =>
|
|
|
|
["Backpropagation" => "internals/tracker.md"],
|
2017-10-18 11:39:58 +00:00
|
|
|
"Community" => "community.md"])
|
2017-01-16 00:46:50 +00:00
|
|
|
|
2019-01-10 13:54:17 +00:00
|
|
|
deploydocs(repo = "github.com/FluxML/Flux.jl.git")
|