Skip to content

Commit

Permalink
bytes on 1.11, and revert a fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcabbott committed Dec 4, 2024
1 parent f1a36f8 commit 784ae8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/guide/models/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ Chain(
Dense(1 => 20, σ), # 40 parameters
Dense(20 => 1), # 21 parameters
only,
) # Total: 4 arrays, 61 parameters, 500 bytes.
) # Total: 4 arrays, 61 parameters, 452 bytes.
```

How does this `model2` differ from the `model1` we had before?
Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/models/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Under the hood, the Flux [`Flux.train!`](@ref) function uses *a loss function* a
julia> using Flux: train!
julia> opt = Descent()
Descent(0.1)
Descent(0.1f0)
julia> data = [(x_train, y_train)]
1-element Vector{Tuple{Matrix{Int64}, Matrix{Int64}}}:
Expand Down

0 comments on commit 784ae8f

Please sign in to comment.