-
-
Notifications
You must be signed in to change notification settings - Fork 607
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Oops, forgot .JuliaFormatter.toml this time
- Loading branch information
1 parent
39c08fc
commit 289aa9d
Showing
42 changed files
with
1,448 additions
and
1,778 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
style = "sciml" | ||
whitespace_in_kwargs = true | ||
format_docstrings = true | ||
always_for_in = true | ||
join_lines_based_on_source = true | ||
separate_kwargs_with_semicolon = true | ||
always_use_return = true | ||
margin = 92 | ||
indent = 4 |
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,61 +1,61 @@ | ||
using Documenter, | ||
Flux, NNlib, Functors, MLUtils, BSON, Optimisers, OneHotArrays, Zygote, ChainRulesCore | ||
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) |
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.