[][src]Struct menoh::Builder

pub struct Builder { /* fields omitted */ }

Helper to build Model.

Methods

impl Builder
[src]

pub fn from_onnx<P>(path: P) -> Result<Self, Error> where
    P: AsRef<Path>, 
[src]

Create a builder from a ONNX file.

let builder = Builder::from_onnx("MLP.onnx")?;

pub fn from_onnx_bytes(data: &[u8]) -> Result<Self, Error>
[src]

Create a builder from a ONNX data.

let builder = Builder::from_onnx_bytes(onnx_data)?;

pub fn add_input<T>(self, name: &str, dims: &[usize]) -> Result<Self, Error> where
    T: Dtype
[src]

Register a variable as input.

let builder = builder.add_input::<f32>("input", &[2, 3])?;

pub fn add_output(self, name: &str) -> Result<Self, Error>
[src]

Register a variable as output.

let builder = builder.add_output("fc2")?;

pub fn build(self, backend: &str, backend_config: &str) -> Result<Model, Error>
[src]

Build a Model.

let model = builder.build("mkldnn", "")?;

Auto Trait Implementations

impl !Send for Builder

impl !Sync for Builder

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]