mirror of
https://github.com/huggingface/candle.git
synced 2025-06-20 04:00:28 +00:00
13 lines
216 B
Rust
13 lines
216 B
Rust
use candle::Tensor;
|
|
|
|
pub struct Dataset {
|
|
pub train_images: Tensor,
|
|
pub train_labels: Tensor,
|
|
pub test_images: Tensor,
|
|
pub test_labels: Tensor,
|
|
pub labels: usize,
|
|
}
|
|
|
|
pub mod cifar;
|
|
pub mod mnist;
|