Skip to content

Commit a005915

Browse files
committed
change dataset path
1 parent b9c1222 commit a005915

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This repo contains the evaluation code for the paper "[SciCode: A Research Codin
77

88
## 🔔News
99

10-
**[2025-02-17]: SciCode benchmark is available at [HuggingFace Datasets](https://huggingface.co/datasets/Zilinghan/scicode)!**
10+
**[2025-02-17]: SciCode benchmark is available at [HuggingFace Datasets](https://huggingface.co/datasets/SciCode1/SciCode)!**
1111

1212
**[2025-02-01]: Results for DeepSeek-R1, DeepSeek-V3, and OpenAI o3-mini are added.**
1313

eval/inspect_ai/scicode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def scicode(
400400
):
401401

402402
dataset = hf_dataset(
403-
'Zilinghan/scicode',
403+
'SciCode1/SciCode',
404404
split=split,
405405
sample_fields=record_to_sample,
406406
)

src/scicode/parse/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def read_from_jsonl(file_path):
5858
return data
5959

6060
def read_from_hf_dataset(split='validation'):
61-
dataset = load_dataset('Zilinghan/scicode', split=split)
61+
dataset = load_dataset('SciCode1/SciCode', split=split)
6262
return dataset
6363

6464
def rm_comments(string: str) -> str:

0 commit comments

Comments
 (0)