Metadata-Version: 2.4
Name: motorai-det-submit
Version: 0.2.0
Summary: Determined AI experiment submission wrapper — organises S3 checkpoints and MLflow runs by workspace/project/name
License: Proprietary
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: determined>=0.38.1
Requires-Dist: pyyaml>=6.0

# det-submit

Experiment submission wrapper for the Motor-Ai AI training platform.

Reads `workspace`, `project`, and `name` from an experiment YAML and automatically injects:

- `checkpoint_storage.prefix` → checkpoints land at `checkpoints/<workspace>/<project>/<name>/<uuid>/`
- `DET_WORKSPACE`, `DET_PROJECT`, `DET_EXPERIMENT_NAME` → used by `train.py` to organise MLflow runs under `<workspace>/<project>`

## Install

```bash
pip install motorai-det-submit
```

## Usage

```bash
det-submit experiment.yaml ./src/
det-submit experiment.yaml ./src/ --follow
det-submit experiment.yaml ./src/ --paused
```

All flags accepted by `det experiment create` are forwarded verbatim.
