pub struct CsvDataset { /* private fields */ }Expand description
A dataset loaded from a CSV file.
All values are parsed as f64. Non-numeric fields will cause a panic.
§Example
ⓘ
// Load iris.csv: 4 feature columns, 1 target column (last)
let ds = CsvDataset::load("data/iris.csv", CsvConfig {
has_header: true,
feature_cols: vec![0, 1, 2, 3],
target_cols: vec![4],
delimiter: b',',
}).unwrap();Implementations§
Trait Implementations§
Source§impl Dataset for CsvDataset
impl Dataset for CsvDataset
Source§fn feature_shape(&self) -> &[usize]
fn feature_shape(&self) -> &[usize]
The shape of a single feature sample (without batch dim).
Source§fn target_shape(&self) -> &[usize]
fn target_shape(&self) -> &[usize]
The shape of a single target sample (without batch dim).
Auto Trait Implementations§
impl Freeze for CsvDataset
impl RefUnwindSafe for CsvDataset
impl Send for CsvDataset
impl Sync for CsvDataset
impl Unpin for CsvDataset
impl UnsafeUnpin for CsvDataset
impl UnwindSafe for CsvDataset
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more