We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203d23e commit 53c27f0Copy full SHA for 53c27f0
commit0/harness/build.py
@@ -4,7 +4,7 @@
4
from datasets import load_dataset
5
from typing import Iterator, Union
6
7
-from commit0.harness.constants import RepoInstance, SimpleInstance, SPLIT, ABSOLUTE_REPO_DIR
+from commit0.harness.constants import RepoInstance, SimpleInstance, SPLIT
8
from commit0.harness.docker_build import build_repo_images
9
from commit0.harness.spec import make_spec
10
@@ -45,7 +45,7 @@ def main(
45
repo_name = example["repo"].split("/")[-1]
46
if split != "all" and repo_name not in SPLIT[split]:
47
continue
48
- spec = make_spec(example, dataset_type, DOCKER_REPO_DIR)
+ spec = make_spec(example, dataset_type, absolute=True)
49
specs.append(spec)
50
51
client = docker.from_env()
0 commit comments