use-ml-pipeline 0.0.1

ML pipeline metadata primitives for RustUse.
Documentation
  • Coverage
  • 1.16%
    1 out of 86 items documented1 out of 26 items with examples
  • Size
  • Source code size: 10.94 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.29 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s 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-pipeline

ML pipeline metadata primitives for RustUse.

Experimental

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

Example

use use_ml_pipeline::{MlPipelineName, MlPipelineStepKind, MlPipelineStatus};

let name = MlPipelineName::new("training-pipeline")?;
let step: MlPipelineStepKind = "featurize".parse()?;

assert_eq!(name.as_str(), "training-pipeline");
assert_eq!(step, MlPipelineStepKind::Featurize);
assert_eq!(MlPipelineStatus::Ready.as_str(), "ready");
# Ok::<(), use_ml_pipeline::MlPipelineError>(())

Scope

  • Pipeline names, identifiers, step names, step kinds, statuses, run IDs, and lifecycle labels.
  • Artifact, dependency, trigger, and schedule kind metadata.

Non-goals

  • Pipeline orchestration, scheduling, deployment, or monitoring engines.
  • Agent workflows, tool-routing, prompt chains, RAG chains, or reasoning plans.

License

Licensed under either Apache-2.0 or MIT.