pub struct Input {
pub name: String,
pub input_type: TensorElementDataType,
pub dimensions: Vec<Option<u32>>,
}
Expand description
Information about an ONNX’s input as stored in loaded file
Fields§
§name: String
Name of the input layer
input_type: TensorElementDataType
Type of the input layer’s elements
dimensions: Vec<Option<u32>>
Shape of the input layer
C API uses a i64 for the dimensions. We use an unsigned of the same range of the positive values.
Implementations§
Source§impl Input
impl Input
Sourcepub fn dimensions(&self) -> impl Iterator<Item = Option<usize>> + '_
pub fn dimensions(&self) -> impl Iterator<Item = Option<usize>> + '_
Return an iterator over the shape elements of the input layer
Note: The member Input::dimensions
stores u32
(since ONNX uses i64
but which cannot be negative) so the
iterator converts to usize
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more