mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* a starting point for SWE-Bench evaluation with docker * fix the swe-bench uid issue * typo fixed * fix conda missing issue * move files based on new PR * Update doc and gitignore using devin prediction file from #81 * fix typo * add a sentence * fix typo in path * fix path --------- Co-authored-by: Binyuan Hui <binyuan.hby@alibaba-inc.com>
11 lines
384 B
Bash
Executable File
11 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xeo pipefail
|
|
mkdir -p data/processed
|
|
python3 scripts/download_test_data.py
|
|
|
|
# Download an example output file (FROM claude-2)
|
|
# https://gist.github.com/sorendunn/9f1f1fade59f986b4925b6633f9ff165
|
|
mkdir -p data/predictions
|
|
wget https://huggingface.co/datasets/OpenDevin/Devin-SWE-bench-output/raw/main/devin_swe_outputs.json -O data/predictions/devin_swe_outputs.json
|