Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sure first example in Custom Layers docs uses type parameter #2415

Merged
merged 3 commits into from
Apr 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/models/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Here we will try and describe usage of some more advanced features that Flux pro
Here is a basic example of a custom model. It simply adds the input to the result from the neural network.

```julia
struct CustomModel
chain::Chain
struct CustomModel{T <: Chain} # Parameter to avoid type instability (see "Multiple inputs" section below)
CarloLucibello marked this conversation as resolved.
Show resolved Hide resolved
chain::T
end

function (m::CustomModel)(x)
Expand Down
Loading