We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fn main() -> Result<(), Box<dyn Error>> { let cifar = candle_datasets::vision::cifar::load()?; dbg!(&cifar.train_images); // Tensor[dims 50000, 3, 32, 32; u8] dbg!(&cifar.train_labels); // Tensor[dims 50000; u8] dbg!(cifar .train_images .flatten_all()? .to_vec1::<u8>()? .into_iter() .any(|x| x != 0)); // false dbg!(cifar .train_labels .flatten_all()? .to_vec1::<u8>()? .into_iter() .any(|x| x != 0)); // true Ok(()) }
I was able to see download progress bars for plain_text/test/0000.parquet and lain_text/train/0000.parquet, but no for images.
plain_text/test/0000.parquet
lain_text/train/0000.parquet
The text was updated successfully, but these errors were encountered:
what is the problem here?
Sorry, something went wrong.
No branches or pull requests
I was able to see download progress bars for
plain_text/test/0000.parquet
andlain_text/train/0000.parquet
, but no for images.The text was updated successfully, but these errors were encountered: