3 releases
Uses new Rust 2024
new 0.1.3 | Apr 23, 2025 |
---|---|
0.1.2 | Apr 23, 2025 |
0.1.1 | Apr 23, 2025 |
#769 in Machine learning
239 downloads per month
59KB
655 lines
Setup
1. Download / Install CINIC-10
Download the CINIC-10 dataset from the official website: CINIC-10
Extract the downloaded dataset to a directory of your choice.
2. Configure CINIC10_PATH
There are two options to configure the path to the CINIC-10 dataset:
-
Environment Variable: Set the
CINIC10_PATH
environment variable to the path of the extracted CINIC-10 dataset. This can be done in your terminal or command prompt:export CINIC10_PATH=/path/to/cinic-10
-
Setup Code: Alternatively, you can set the default path:
use cinic_10_index::set_default_path; fn main() { set_default_path("/path/to/cinic-10"); // ... }
3. Load default Index
You can load the default index using the following code:
use cinic_10_index::Cinic10Index;
fn main() {
let index: Cinic10Index = Default::default();
...
}
Dependencies
~57–90MB
~1.5M SLoC