use-ml-dataset 0.0.1

Dataset identity and metadata primitives for RustUse machine-learning workflows.
Documentation
  • Coverage
  • 1.41%
    1 out of 71 items documented1 out of 37 items with examples
  • Size
  • Source code size: 12.1 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.38 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 3s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-ml
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-ml-dataset

Dataset identity and metadata primitives for RustUse machine-learning workflows.

Experimental

use-ml-dataset is experimental while use-ml remains below 0.3.0.

Example

use use_ml_dataset::{MlDatasetName, MlDatasetSplit, MlDatasetProvenance};

let name = MlDatasetName::new("iris")?;
let split: MlDatasetSplit = "validation".parse()?;

assert_eq!(name.as_str(), "iris");
assert_eq!(split.to_string(), "validation");
assert_eq!(MlDatasetProvenance::Synthetic.as_str(), "synthetic");
# Ok::<(), use_ml_dataset::MlDatasetError>(())

Scope

  • Dataset names, identifiers, versions, splits, and kinds.
  • Example identifiers and example-kind labels.
  • Dataset license, provenance, schema-reference, and dataset-card-reference metadata.

Non-goals

  • Loading datasets or parsing full dataset schemas.
  • Prompt datasets, chat logs, RAG corpora, or conversation-specific concepts unless modeled generically as datasets.

License

Licensed under either Apache-2.0 or MIT.