Add the candle-datasets crate (#322)

* Move the vision datasets to a separate crate.

* Move the batcher bits.

* Update the readme.

* Move the tiny-stories bits.

---------

Co-authored-by: Jane Doe <jane.doe@example.org>
This commit is contained in:
Laurent Mazare
2023-08-05 08:56:50 +01:00
committed by GitHub
parent f7b2a0391d
commit 620f83cf66
15 changed files with 163 additions and 125 deletions

View File

@ -2,7 +2,6 @@
// error type if needed or add some specialized cases on the candle-core side.
pub mod activation;
pub mod conv;
pub mod dataset;
pub mod embedding;
pub mod init;
pub mod layer_norm;
@ -11,7 +10,6 @@ pub mod loss;
pub mod ops;
pub mod optim;
pub mod var_builder;
pub mod vision;
pub use activation::Activation;
pub use conv::{Conv1d, Conv1dConfig};