MCIBench is a multilingual code intelligence benchmark for problem-aligned code generation and directed code translation. It preserves prompts, model outputs, executable submissions, execution status, failure type, runtime, memory usage, and derived pass@k artifacts.
MCIBench/
metadata/ # problems, tags, difficulty labels, templates, indexes
solutions/ # reference and execution-validated solutions
generation/ # generation outputs, submissions archive, execution records
translation/ # translation outputs, submissions archive, execution records
scripts/ # evaluation, reproduction, analysis, archive sync scripts
dashboard/ # online interface implementation
docs/ # README material, tutorial notes, figures, tables, schemas
| Path | Content |
|---|---|
metadata/GenCode_ids.txt |
1,489 generation task qids |
metadata/TransCode_targ_ids.txt |
100 translation task qids |
metadata/language.txt |
8 benchmark languages |
metadata/language_pairs.txt |
56 directed translation pairs |
metadata/problems/descriptions/ |
Chinese and English problem statements |
metadata/templates/snippets/ |
Per-problem, per-language interface templates |
solutions/reference/ |
Reference solutions grouped by qid |
docs/derived_data/generation_passk.csv |
Generation pass@1 through pass@5 |
docs/derived_data/translation_passk.csv |
Translation pass@1 through pass@5 |
generation/records/generation_results.csv.tgz |
Compressed generation execution records |
translation/records/translation_results.csv.tgz |
Compressed translation execution records |
Expanded output folders are ignored by Git. Restore the local runtime folders from tracked archives:
python scripts/sync_archives.pyThis extracts:
generation/submissions/
translation/submissions/
generation/records/generation_results.csv
translation/records/translation_results.csv
The generated code folders generation/code/ and translation/code/ are local provenance folders. Keep them in place when rebuilding the dashboard database from raw outputs.
Restore the released dashboard SQLite database:
cd dashboard
python scripts/restore_database.pyRun with Docker:
docker compose -f docker-compose.prod.yml up -d --buildRun locally:
cd packages/server
cp config/config.example.yaml config/config.yaml
go run cmd/server/main.gocd dashboard/packages/web
npm install
npm run devDashboard details are in dashboard/README.md.
Use the repository root as the working directory:
python scripts/analyze_dataset_quality.py
python scripts/generate_paper_artifacts.py
python scripts/render_dataset_quality_table.pyThe scripts resolve the new layout through scripts/layout.py.