Skip to content

Commit 9b89ef5

Browse files
[PB] Small patch to LFS instructions (#86)
1 parent 8c95675 commit 9b89ef5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/paperbench_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Hydrate PaperBench data
3535
run: |
36-
git lfs fetch --include "project/paperbench/data/**"
36+
git lfs fetch --include "project/paperbench/data/**" --exclude ""
3737
git lfs checkout project/paperbench/data
3838
3939
- name: Install uv

project/paperbench/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ step above. Hydrate it manually and point PaperBench at the hydrated directory:
5757
```console
5858
git clone https://github.com/openai/frontier-evals.git --filter=blob:none
5959
cd frontier-evals
60-
git lfs fetch --include "project/paperbench/data/**"
60+
git lfs fetch --include "project/paperbench/data/**" --exclude ""
6161
git lfs checkout project/paperbench/data
6262
export PAPERBENCH_DATA_DIR="$(pwd)/project/paperbench/data" # add to your shell profile
6363
```

project/paperbench/paperbench/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, candidate: Path):
3535
"If you installed PaperBench from a git dependency, the dataset is not pulled "
3636
"automatically. Set the PAPERBENCH_DATA_DIR environment variable to point to a "
3737
"clone of `frontier-evals` where you've run `git lfs fetch --include "
38-
'"project/paperbench/data/**"` (and `git lfs checkout`), or hydrate the data in '
38+
'"project/paperbench/data/**" --exclude ""` (and `git lfs checkout`), or hydrate the data in '
3939
"another location and point PAPERBENCH_DATA_DIR at it."
4040
)
4141
super().__init__(message)

0 commit comments

Comments
 (0)