![bors[bot]](/assets/img/avatar_default.png)
1028: Common questions answered in docs r=CarloLucibello a=dhairyagandhi96 cc @MikeInnes 1070: Prevent breakage due to new `active` field in normalise layers r=CarloLucibello a=ianshmean Prevents breakage where the normalise structs, such as `BatchNorm`, have been directly defined but missing the new `active` field cc. @darsnack Co-authored-by: Dhairya Gandhi <dhairya@juliacopmuting.com> Co-authored-by: Dhairya Gandhi <dhairya@juliacomputing.com> Co-authored-by: Ian <i.r.butterworth@gmail.com>
31 lines
1.4 KiB
Julia
31 lines
1.4 KiB
Julia
using Documenter, Flux, NNlib
|
|
|
|
makedocs(modules=[Flux, NNlib],
|
|
sitename = "Flux",
|
|
pages = ["Home" => "index.md",
|
|
"Building Models" =>
|
|
["Basics" => "models/basics.md",
|
|
"Recurrence" => "models/recurrence.md",
|
|
"Regularisation" => "models/regularisation.md",
|
|
"Model Reference" => "models/layers.md",
|
|
"Advanced Model Building" => "models/advanced.md",
|
|
"NNlib" => "models/nnlib.md"],
|
|
"Handling Data" =>
|
|
["One-Hot Encoding" => "data/onehot.md",
|
|
"DataLoader" => "data/dataloader.md"],
|
|
"Training Models" =>
|
|
["Optimisers" => "training/optimisers.md",
|
|
"Training" => "training/training.md"],
|
|
"GPU Support" => "gpu.md",
|
|
"Saving & Loading" => "saving.md",
|
|
"The Julia Ecosystem" => "ecosystem.md",
|
|
"Performance Tips" => "performance.md",
|
|
"Community" => "community.md"],
|
|
format = Documenter.HTML(assets = ["assets/flux.css"],
|
|
analytics = "UA-36890222-9",
|
|
prettyurls = haskey(ENV, "CI")))
|
|
|
|
deploydocs(repo = "github.com/FluxML/Flux.jl.git",
|
|
target = "build",
|
|
push_preview = true)
|