mirror of
https://github.com/huggingface/candle.git
synced 2025-06-18 11:37:11 +00:00

* Add more models to the onnx example. * Input validation. * Input validation. * Bugfix. * Implement clip. * BatchNorm support. * Get the efficientnet onnx to work.
11 lines
328 B
Markdown
11 lines
328 B
Markdown
## Using ONNX models in Candle
|
|
|
|
This example demonstrates how to run ONNX based models in Candle, the model
|
|
being used here is a small sequeezenet variant.
|
|
|
|
You can run the example with the following command:
|
|
|
|
```bash
|
|
cargo run --example squeezenet-onnx --release -- --image candle-examples/examples/yolo-v8/assets/bike.jpg
|
|
```
|