ort 1.16.3

A Rust wrapper for ONNX Runtime 1.16 - Optimize and Accelerate Machine Learning Inferencing
Documentation
1
2
3
4
5
6
7
8
pub mod language;
pub mod vision;

/// Represents a type that returns an ONNX model URL.
pub trait ModelUrl {
	/// Returns the model URL associated with this model.
	fn fetch_url(&self) -> &'static str;
}