Struct tract_onnx::pb::ModelProto [−][src]
Models
ModelProto is a top-level file/container format for bundling a ML model and associating its computation graph with metadata.
The semantics of the model are described by the associated GraphProto.
Fields
ir_version: i64The version of the IR this model targets. See Version enum above. This field MUST be present.
opset_import: Vec<OperatorSetIdProto>The OperatorSets this model relies on. All ModelProtos MUST have at least one entry that specifies which version of the ONNX OperatorSet is being imported.
All nodes in the ModelProto’s graph will bind against the operator with the same-domain/same-op_type operator with the HIGHEST version in the referenced operator sets.
producer_name: StringThe name of the framework or tool used to generate this model. This field SHOULD be present to indicate which implementation/tool/framework emitted the model.
producer_version: StringThe version of the framework or tool used to generate this model. This field SHOULD be present to indicate which implementation/tool/framework emitted the model.
domain: StringDomain name of the model.
We use reverse domain names as name space indicators. For example:
com.facebook.fair or com.microsoft.cognitiveservices
Together with model_version and GraphProto.name, this forms the unique identity of
the graph.
model_version: i64The version of the graph encoded. See Version enum below.
doc_string: StringA human-readable documentation for this model. Markdown is allowed.
graph: Option<GraphProto>The parameterized graph that is evaluated to execute the model.
metadata_props: Vec<StringStringEntryProto>Named metadata values; keys should be distinct.
Trait Implementations
impl Clone for ModelProto[src]
fn clone(&self) -> ModelProto[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ModelProto[src]
impl Default for ModelProto[src]
impl Framework<ModelProto, Graph<InferenceFact, Box<dyn InferenceOp + 'static, Global>>> for Onnx[src]
fn proto_model_for_path(&self, p: impl AsRef<Path>) -> TractResult<ModelProto>[src]
fn proto_model_for_read(&self, r: &mut dyn Read) -> TractResult<ModelProto>[src]
fn model_for_proto_model(
&self,
proto: &ModelProto
) -> TractResult<InferenceModel>[src]
&self,
proto: &ModelProto
) -> TractResult<InferenceModel>
pub fn model_for_read(&self, r: &mut dyn Read) -> Result<Model, Error>
pub fn model_for_path(&self, p: impl AsRef<Path>) -> Result<Model, Error>
impl Message for ModelProto[src]
fn encode_raw<B>(&self, buf: &mut B) where
B: BufMut, [src]
B: BufMut,
fn merge_field<B>(
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf, [src]
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
fn encoded_len(&self) -> usize[src]
fn clear(&mut self)[src]
pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
B: BufMut,
pub fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
B: BufMut,
pub fn decode<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf, [src]
Self: Default,
B: Buf,
pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf, [src]
Self: Default,
B: Buf,
pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf, [src]
B: Buf,
pub fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf, [src]
B: Buf,
impl PartialEq<ModelProto> for ModelProto[src]
fn eq(&self, other: &ModelProto) -> bool[src]
fn ne(&self, other: &ModelProto) -> bool[src]
impl StructuralPartialEq for ModelProto[src]
Auto Trait Implementations
impl RefUnwindSafe for ModelProto
impl Send for ModelProto
impl Sync for ModelProto
impl Unpin for ModelProto
impl UnwindSafe for ModelProto
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;
Notable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<T> DynClone for T where
T: Clone, [src]
T: Clone,
pub fn __clone_box(&self, Private) -> *mut ()[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,