mirror of https://github.com/tracel-ai/burn.git
25 lines
331 B
Markdown
25 lines
331 B
Markdown
# 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
|
|
|
|
```sh
|
|
cargo run --bin print --release
|
|
```
|