Spaces:
Sleeping
Sleeping
File size: 822 Bytes
e17f3ba | 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 | services:
sap-rpt1:
build:
context: .
dockerfile: code/docker/Dockerfile
target: sap-rpt1
volumes:
- .:/app
environment:
- PYTHONPATH=/app/code
- HUGGING_FACE_HUB_TOKEN=${HUGGING_FACE_HUB_TOKEN}
- HF_TOKEN=${HF_TOKEN}
working_dir: /app/code
# Default to running single experiment as shown in README
command: -m runners.run_experiment --dataset analcatdata_authorship --model sap-rpt1-hf
baselines:
build:
context: .
dockerfile: code/docker/Dockerfile
target: baselines
volumes:
- .:/app
environment:
- PYTHONPATH=/app/code
working_dir: /app/code
# Default to running batch experiments as shown in GEMINI.md
command: -m runners.run_batch --datasets config/datasets.yaml --models config/models.yaml
|