-
-
Notifications
You must be signed in to change notification settings - Fork 610
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e01eb33
commit 1d40095
Showing
41 changed files
with
1,945 additions
and
1,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,61 @@ | ||
using Documenter, Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, | ||
ChainRulesCore | ||
using Documenter, | ||
Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore | ||
|
||
DocMeta.setdocmeta!(Flux, :DocTestSetup, :(using Flux); recursive = true) | ||
|
||
makedocs(; | ||
modules = [ | ||
Flux, | ||
NNlib, | ||
Functors, | ||
MLUtils, | ||
BSON, | ||
Optimisers, | ||
OneHotArrays, | ||
Zygote, | ||
ChainRulesCore, | ||
Base, | ||
], | ||
doctest = false, | ||
sitename = "Flux", | ||
# strict = [:cross_references,], | ||
pages = [ | ||
"Home" => "index.md", | ||
"Building Models" => [ | ||
"Overview" => "models/overview.md", | ||
"Basics" => "models/basics.md", | ||
"Recurrence" => "models/recurrence.md", | ||
"Layer Reference" => "models/layers.md", | ||
"Loss Functions" => "models/losses.md", | ||
"Regularisation" => "models/regularisation.md", | ||
"Custom Layers" => "models/advanced.md", | ||
"NNlib.jl" => "models/nnlib.md", | ||
"Activation Functions" => "models/activation.md", | ||
], | ||
"Handling Data" => [ | ||
"MLUtils.jl" => "data/mlutils.md", | ||
"OneHotArrays.jl" => "data/onehot.md", | ||
], | ||
"Training Models" => [ | ||
"Optimisers" => "training/optimisers.md", | ||
"Training" => "training/training.md", | ||
"Callback Helpers" => "training/callbacks.md", | ||
"Zygote.jl" => "training/zygote.md", | ||
], | ||
"GPU Support" => "gpu.md", | ||
"Model Tools" => [ | ||
"Saving & Loading" => "saving.md", | ||
"Shape Inference" => "outputsize.md", | ||
"Weight Initialisation" => "utilities.md", | ||
"Functors.jl" => "models/functors.md", | ||
], | ||
"Performance Tips" => "performance.md", | ||
"Flux's Ecosystem" => "ecosystem.md", | ||
], | ||
format = Documenter.HTML(; sidebar_sitename = false, | ||
analytics = "UA-36890222-9", | ||
assets = ["assets/flux.css"], | ||
prettyurls = get(ENV, "CI", nothing) == "true")) | ||
modules = [ | ||
Flux, | ||
NNlib, | ||
Functors, | ||
MLUtils, | ||
BSON, | ||
Optimisers, | ||
OneHotArrays, | ||
Zygote, | ||
ChainRulesCore, | ||
Base, | ||
], | ||
doctest = false, | ||
sitename = "Flux", | ||
# strict = [:cross_references,], | ||
pages = [ | ||
"Home" => "index.md", | ||
"Building Models" => [ | ||
"Overview" => "models/overview.md", | ||
"Basics" => "models/basics.md", | ||
"Recurrence" => "models/recurrence.md", | ||
"Layer Reference" => "models/layers.md", | ||
"Loss Functions" => "models/losses.md", | ||
"Regularisation" => "models/regularisation.md", | ||
"Custom Layers" => "models/advanced.md", | ||
"NNlib.jl" => "models/nnlib.md", | ||
"Activation Functions" => "models/activation.md", | ||
], | ||
"Handling Data" => | ||
["MLUtils.jl" => "data/mlutils.md", "OneHotArrays.jl" => "data/onehot.md"], | ||
"Training Models" => [ | ||
"Optimisers" => "training/optimisers.md", | ||
"Training" => "training/training.md", | ||
"Callback Helpers" => "training/callbacks.md", | ||
"Zygote.jl" => "training/zygote.md", | ||
], | ||
"GPU Support" => "gpu.md", | ||
"Model Tools" => [ | ||
"Saving & Loading" => "saving.md", | ||
"Shape Inference" => "outputsize.md", | ||
"Weight Initialisation" => "utilities.md", | ||
"Functors.jl" => "models/functors.md", | ||
], | ||
"Performance Tips" => "performance.md", | ||
"Flux's Ecosystem" => "ecosystem.md", | ||
], | ||
format = Documenter.HTML(; | ||
sidebar_sitename = false, | ||
analytics = "UA-36890222-9", | ||
assets = ["assets/flux.css"], | ||
prettyurls = get(ENV, "CI", nothing) == "true", | ||
), | ||
) | ||
|
||
deploydocs(; repo = "github.com/FluxML/Flux.jl.git", | ||
target = "build", | ||
push_preview = true) | ||
deploydocs(; repo = "github.com/FluxML/Flux.jl.git", target = "build", push_preview = true) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.