File size: 1,711 Bytes
8731053
 
b6b3c3c
1a1fb06
 
8731053
1a1fb06
 
 
 
 
 
 
 
 
 
 
 
 
 
8731053
42b1a7b
bca0637
b6b3c3c
bca0637
 
214f021
42b1a7b
1a1fb06
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# harbor-datasets-mlab

Harbor-format **MLAB** benchmark (MLAgentBench, arXiv:2310.03302): 9 real ML tasks across tabular / text / vision / graph / segmentation (fathomnet + identify-contrails are ≤5 GB competition subsets, the rest full). A general benchmark for
**any Harbor agent** — tasks are agent-neutral and **self-contained**.
`registry.json` at the root, **one folder per task**.

## What each task contains
```
datasets/mlab-real/<task>/
  environment/Dockerfile      # builds FROM python:3.12-slim — no external base image
  environment/requirements.txt
  environment/prepare.py      # stages the data into /workspace at build time
  environment/data/           # the real data
  instruction.md              # task description + submission format (agent-neutral)
  tests/                      # scorer + verifier
  task.toml                   # Harbor task config
```
Nothing outside this repository is required: no private images, no extra repos,
no tokens. `docker build` pulls only `python:3.12-slim` and public PyPI/apt
packages. The agent is installed by Harbor itself, so any agent works.

Tasks (`-i`): spaceship-titanic, house-price, amp-parkinsons, imdb, feedback, cifar10, ogbn-arxiv, fathomnet, identify-contrails.

## Run
```bash
REPO=https://huggingface.co/datasets/danil-e/harbor-datasets-mlab
harbor run --repo $REPO -d mlab-real -i feedback -a <agent> -m <model>
```
The task image is built on first run (installs the task's Python stack, so the
first build takes a few minutes; later runs reuse the cached image).

Harbor's other environment backends (`-e ...`, e.g. for hosts without a Docker
daemon) work the same way — see the Harbor documentation for their requirements.