pub enum ModelError {
Format(FormatError),
UnsupportedArchitecture(String),
UnsupportedMedia(String),
Unsupported(String),
MissingTensor(String),
BadShape {
tensor: String,
expected: Vec<usize>,
got: Vec<usize>,
},
}Expand description
Errors produced while constructing or running models.
Variants§
Format(FormatError)
A format-adapter error.
UnsupportedArchitecture(String)
No registered architecture matches the source metadata.
UnsupportedMedia(String)
Media input (image/audio) was passed to a model that cannot take it.
Unsupported(String)
The model does not implement an optional capability (e.g. hidden states for embeddings).
MissingTensor(String)
A required weight tensor is missing from the source.
BadShape
A weight tensor has an unexpected shape.
Trait Implementations§
Source§impl Debug for ModelError
impl Debug for ModelError
Source§impl Display for ModelError
impl Display for ModelError
Source§impl Error for ModelError
impl Error for ModelError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<FormatError> for ModelError
impl From<FormatError> for ModelError
Source§fn from(source: FormatError) -> Self
fn from(source: FormatError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ModelError
impl !UnwindSafe for ModelError
impl Freeze for ModelError
impl Send for ModelError
impl Sync for ModelError
impl Unpin for ModelError
impl UnsafeUnpin for ModelError
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