Skip to content

Commit c04210c

Browse files
authored
Merge pull request #2055 from Saransh-cpp/leftover
Leftover changes from #2046
2 parents 276e372 + d77adb9 commit c04210c

File tree

3 files changed

+2
-1890
lines changed

3 files changed

+2
-1890
lines changed

docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ makedocs(
1919
"Regularisation" => "models/regularisation.md",
2020
"Advanced Model Building" => "models/advanced.md",
2121
"Neural Network primitives from NNlib.jl" => "models/nnlib.md",
22-
"Functor from Functors.jl" => "models/functors.md"
22+
"Recursive transformations from Functors.jl" => "models/functors.md"
2323
],
2424
"Handling Data" => [
2525
"One-Hot Encoding with OneHotArrays.jl" => "data/onehot.md",

docs/src/models/functors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Flux models are deeply nested structures, and [Functors.jl](https://github.com/F
44

55
New layers should be annotated using the `Functors.@functor` macro. This will enable [`params`](@ref Flux.params) to see the parameters inside, and [`gpu`](@ref) to move them to the GPU.
66

7-
`Functors.jl` has its own [notes on basic usage](https://fluxml.ai/Functors.jl/stable/#Basic-Usage-and-Implementation) for more details.
7+
`Functors.jl` has its own [notes on basic usage](https://fluxml.ai/Functors.jl/stable/#Basic-Usage-and-Implementation) for more details. Additionally, the [Advanced Model Building and Customisation](@ref Advanced-Model-Building-and-Customisation) page covers the use cases of `Functors` in greater details.
88

99
```@docs
1010
Functors.@functor

0 commit comments

Comments
 (0)