burn/examples/guide/README.md

25 lines
331 B
Markdown
Raw Normal View History

2024-01-26 05:16:39 +08:00
# Basic Workflow: From Training to Inference
This example corresponds to the [book's guide](https://burn.dev/book/basic-workflow/).
## Example Usage
### Training
```sh
cargo run --bin train --release
```
### Inference
```sh
cargo run --bin infer --release
```
### Print the model
2024-01-26 05:16:39 +08:00
```sh
cargo run --bin print --release
```