Quick Start¶
Get Agentomics-ML running in a few minutes with the pre-built Docker image.
Prerequisites¶
- Docker installed and running
- An API key from a configured provider, such as OpenRouter or OpenAI
Steps¶
1. Install the CLI and an Example Dataset¶
Install the package from PyPI, then download a single example dataset to try
(AGO2_CLASH_Hejret2023). No repository clone is required:
2. Set a Provider Key¶
Export at least one provider key (or put it in a .env file in the current
directory):
3. Run the Agent¶
agentomics-run launches the Agentomics Docker image for you, reads datasets
from ./datasets, and writes this run's results to ./outputs/<agent_id>/.
Drop --dataset AGO2_CLASH_Hejret2023 to pick a model,
dataset, and iteration count interactively instead.
The validation metric defaults to AUROC for classification and MAE for regression. To choose one explicitly, pass --val-metric; list options with --list-metrics in place of the run arguments.
Using Your Own Dataset¶
Place your data in datasets/<your_dataset_name>/:
datasets/my_dataset/
├── train/
│ ├── input/ # Required: model input files
│ └── labels.csv # Required: id,label
├── validation/ # Optional
│ ├── input/
│ └── labels.csv
├── test/ # Optional; hidden from the agent and evaluated afterward
│ ├── input/
│ └── labels.csv
└── dataset_description.md
The held-out test split is optional. It is not mounted into the agent worker.
After a successful run, Agentomics starts a separate evaluation container with
read-only access to the test split, evaluates the best iteration, and includes
the results in reports. Run training with --dataset my_dataset. See
Preparing Datasets for details.
Example Datasets¶
Download example dataset to try:
List other available examples with:
What Happens Next¶
The agent will:
- Prepare your dataset
- Run iterative ML development cycles
- Save the best model to the run's output directory (
outputs/<agent_id>/)
Results include trained models, inference scripts, markdown reports in reports/markdown/, and PDF reports in reports/pdf/.
Next Steps¶
- Installation - Docker and Ollama setup
- Running the Agent - Advanced usage
- CLI Options - All available flags