pub trait ITensor_Impl: Sized + ILearningModelFeatureValue_Impl {
    // Required methods
    fn TensorKind(&self) -> Result<TensorKind>;
    fn Shape(&self) -> Result<IVectorView<i64>>;
}
Expand description

Required features: "AI_MachineLearning", "Foundation_Collections", "implement"

Required Methods§

fn TensorKind(&self) -> Result<TensorKind>

fn Shape(&self) -> Result<IVectorView<i64>>

Implementors§