[][src]Struct nasbench::ModelSpec

pub struct ModelSpec { /* fields omitted */ }

Model specification given adjacency matrix and operations (a.k.a. "module").

Note that two instances of ModuleSpec are regarded as the same if their structures are semantically equivalent (see below).

use nasbench::{ModelSpec, Op};

let model0 = ModelSpec::new(vec![Op::Input, Op::Output], "0100".parse()?)?;
let model1 = ModelSpec::new(
    vec![Op::Input, Op::Conv1x1, Op::Output],
    "001000000".parse()?,
)?;

assert_eq!(model0, model1);

Methods

impl ModelSpec[src]

pub fn new(ops: Vec<Op>, adjacency: AdjacencyMatrix) -> Result<Self>[src]

Makes a new ModelSpec instance.

pub fn ops(&self) -> &[Op][src]

Returns a reference to the operations of this model.

pub fn adjacency(&self) -> &AdjacencyMatrix[src]

Returns a reference to the adjacency matrix of this model.

Trait Implementations

impl Clone for ModelSpec[src]

impl Debug for ModelSpec[src]

impl Eq for ModelSpec[src]

impl Hash for ModelSpec[src]

impl PartialEq<ModelSpec> for ModelSpec[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.