nove_tensor 0.1.2

An easy-to-use, lightweight deep learning library wrapped around Candle Tensor.
Documentation
mod device;
pub use device::Device;
pub use device::DeviceError;

mod shape;
pub use shape::Shape;

mod tensor;
pub use tensor::Tensor;
pub use tensor::TensorError;

mod conversion;
mod creation;
mod operation;
mod property;

mod dtype;
pub use dtype::DType;

pub mod safetensor;