Skip to content

Commit 51a2973

Browse files
authored
typo - correct smp_serde to rmp_serde as per crate's name in url (#2744)
1 parent fae641f commit 51a2973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

burn-book/src/saving-and-loading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Saving your trained machine learning model is quite easy, no matter the output f
44
mentioned in the [Record](./building-blocks/record.md) section, different formats are supported to
55
serialize/deserialize models. By default, we use the `NamedMpkFileRecorder` which uses the
66
[MessagePack](https://msgpack.org/) binary serialization format with the help of
7-
[smp_serde](https://docs.rs/rmp-serde/).
7+
[rmp_serde](https://docs.rs/rmp-serde/).
88

99
```rust, ignore
1010
// Save model in MessagePack format with full precision

0 commit comments

Comments
 (0)