2017-10-18 10:09:33 +00:00
|
|
|
using Documenter, Flux, NNlib
|
2017-01-16 00:46:50 +00:00
|
|
|
|
2019-08-31 11:05:04 +00:00
|
|
|
DocMeta.setdocmeta!(Flux, :DocTestSetup, :(using Flux); recursive=true)
|
2017-10-18 10:09:33 +00:00
|
|
|
makedocs(modules=[Flux, NNlib],
|
2019-08-31 11:03:46 +00:00
|
|
|
doctest = true,
|
2017-01-17 20:04:01 +00:00
|
|
|
sitename = "Flux",
|
2019-08-31 11:03:46 +00:00
|
|
|
format = Documenter.HTML(
|
|
|
|
analytics = "UA-36890222-9",
|
|
|
|
assets = ["assets/flux.css"],
|
|
|
|
prettyurls = get(ENV, "CI", nothing) == "true",
|
|
|
|
),
|
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",
|
2020-02-29 10:14:48 +00:00
|
|
|
"Model Reference" => "models/layers.md",
|
2020-03-02 07:15:30 +00:00
|
|
|
"Advanced Model Building" => "models/advanced.md",
|
2020-02-29 10:14:48 +00:00
|
|
|
"NNlib" => "models/nnlib.md"],
|
2020-02-26 12:48:27 +00:00
|
|
|
"Handling Data" =>
|
|
|
|
["One-Hot Encoding" => "data/onehot.md",
|
|
|
|
"DataLoader" => "data/dataloader.md"],
|
2017-09-10 01:01:19 +00:00
|
|
|
"Training Models" =>
|
|
|
|
["Optimisers" => "training/optimisers.md",
|
2019-08-31 09:20:32 +00:00
|
|
|
"Loss Functions" => "training/loss_functions.md",
|
2017-09-10 01:01:19 +00:00
|
|
|
"Training" => "training/training.md"],
|
2017-09-28 10:08:37 +00:00
|
|
|
"GPU Support" => "gpu.md",
|
2018-03-05 23:52:04 +00:00
|
|
|
"Saving & Loading" => "saving.md",
|
2020-02-29 12:45:17 +00:00
|
|
|
"The Julia Ecosystem" => "ecosystem.md",
|
2019-08-31 09:20:32 +00:00
|
|
|
"Utility Functions" => "utilities.md",
|
2019-02-19 15:03:41 +00:00
|
|
|
"Performance Tips" => "performance.md",
|
2019-08-19 14:49:50 +00:00
|
|
|
"Community" => "community.md"],
|
2019-08-31 11:03:46 +00:00
|
|
|
)
|
2017-01-16 00:46:50 +00:00
|
|
|
|
2019-08-31 11:03:46 +00:00
|
|
|
deploydocs(repo = "github.com/FluxML/Flux.jl.git",
|
2020-03-02 09:52:27 +00:00
|
|
|
target = "build",
|
|
|
|
push_preview = true)
|