Datasets:
File size: 1,989 Bytes
23d0f2f 37d8f37 23d0f2f 37d8f37 bd19104 e6f6f0e e8b1199 e6f6f0e 37d8f37 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | ---
dataset_info:
features:
- name: question
dtype: string
- name: answer
dtype: string
- name: articles
list: string
- name: instruction_full
dtype: string
- name: metadata
list: string
- name: instruction_proxy
dtype: string
splits:
- name: train
num_bytes: 2238614312
num_examples: 7290
- name: val
num_bytes: 128577788
num_examples: 413
- name: test
num_bytes: 261686916
num_examples: 840
download_size: 2617958231
dataset_size: 2628879016
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: val
path: data/val-*
- split: test
path: data/test-*
license: apache-2.0
language:
- en
tags:
- long-context
pretty_name: proxycot-scitrek
size_categories:
- 1K<n<10K
---
This is the SciTrek data that we used in the ProxyCoT project, and it is based on long-context reasoning (32K-128K tokens).
SciTrek is originally from https://arxiv.org/abs/2509.21028.
To use our dataset, please follow the code below.
```python
train_samples = load_dataset("oaimli/proxycot-scitrek", split="train")
dev_samples = load_dataset("oaimli/proxycot-scitrek", split="val")
test_samples = load_dataset("oaimli/proxycot-scitrek", split="test")
for sample in train_samples:
question = sample["question"]
answer = sample["answer"]
metadata = sample["metadata"]
articles = sample["articles"]
instruction_proxy = sample["instruction_proxy"]
instruction_full = sample["instruction_full"]
instruction_proxy = instruction_proxy.replace("<question>", question)
instruction_proxy = instruction_proxy.replace("<articles>", "\n\n\n".join(metadata))
conversation_proxy = [{"role": "user", "content": instruction_proxy}]
instruction_full = instruction_full.replace("<question>", question)
instruction_full = instruction_full.replace("<articles>", "\n\n\n".join(articles))
conversation_full = [{"role": "user", "content": instruction_full}]
``` |