chore: start moving stuff off parcel

This commit is contained in:
Carson M.
2025-02-21 23:31:14 -06:00
parent 8aab523770
commit d738b1757b
14 changed files with 17 additions and 17 deletions

View File

@@ -18,7 +18,7 @@ fn mnist_5() -> ort::Result<()> {
let mut session = Session::builder()?
.with_optimization_level(GraphOptimizationLevel::Level1)?
.with_intra_threads(1)?
.commit_from_url("https://parcel.pyke.io/v2/cdn/assetdelivery/ortrsv2/ex_models/mnist.onnx")
.commit_from_url("https://cdn.pyke.io/0/pyke:ort-rs/example-models@0.0.0/mnist.onnx")
.expect("Could not download model from file");
let input0_shape = {

View File

@@ -23,7 +23,7 @@ fn squeezenet_mushroom() -> ort::Result<()> {
let mut session = Session::builder()?
.with_optimization_level(GraphOptimizationLevel::Level1)?
.with_intra_threads(1)?
.commit_from_url("https://parcel.pyke.io/v2/cdn/assetdelivery/ortrsv2/ex_models/squeezenet.onnx")
.commit_from_url("https://cdn.pyke.io/0/pyke:ort-rs/example-models@0.0.0/squeezenet.onnx")
.expect("Could not download model from file");
let class_labels = get_imagenet_labels()?;