Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion guides/model_creation/your_first_axon_model.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ predict_fn.(params :: map(tensor), input :: map(tensor) | tensor)
`predict_fn` returns transformed inputs from your model's trainable parameters and the given inputs.

```elixir
params = init_fn.(Nx.template({1, 8}, :f32), %Axon.ModelState{})
params = init_fn.(Nx.template({1, 8}, :f32), Axon.ModelState.empty())
```

<!-- livebook:{"output":true} -->
Expand Down
Loading