Skip to content

Commit

Permalink
Compact recorder does not use compression (anymore)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui committed Apr 8, 2024
1 parent 0ddcec4 commit f411de7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions burn-book/src/basic-workflow/training.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ dataloaders. For the sake of simplicity in this example, we employ the test set
set; however, we do not recommend this practice for actual usage.

Finally, the trained model is returned by the `fit` method. The trained weights are then saved using
the `CompactRecorder`. This recorder employs the `MessagePack` format with `gzip` compression, `f16`
for floats and `i16` for integers. Other recorders are available, offering support for various
formats, such as `BinCode` and `JSON`, with or without compression. Any backend, regardless of
precision, can load recorded data of any kind. Once the weights have been saved, we use the
`LearnerSummary` to display the training report summary.
the `CompactRecorder`. This recorder employs the `MessagePack` format with half precision, `f16` for
floats and `i16` for integers. Other recorders are available, offering support for various formats,
such as `BinCode` and `JSON`, with or without compression. Any backend, regardless of precision, can
load recorded data of any kind. Once the weights have been saved, we use the `LearnerSummary` to
display the training report summary.

0 comments on commit f411de7

Please sign in to comment.