# burn_depth 🔥📐😎
[](https://github.com/Mosure/burn_depth/actions?query=workflow%3Atest)
[](https://crates.io/crates/burn_depth)
burn [depth pro](https://github.com/apple/ml-depth-pro) model inference
|  |  |
## usage
```rust
use burn_depth::model::depth_pro::DepthPro;
let model = DepthPro::<InferenceBackend>::load("assets/model/depth_pro.pt")?;
let depth = model.forward(input);
```
## setup
- download `depth_pro.pt` to `assets/model/`
- `cargo run --bin import`
- `cargo run --example inference`