Bibek commited on
Commit
7992f9a
·
verified ·
1 Parent(s): e0835cc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -24
README.md CHANGED
@@ -1,26 +1,51 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: query
5
- dtype: string
6
- - name: positive
7
- sequence: string
8
- - name: negative
9
- sequence: string
10
- splits:
11
- - name: train
12
- num_bytes: 14876190
13
- num_examples: 6367
14
- - name: validation
15
- num_bytes: 3728965
16
- num_examples: 1592
17
- download_size: 11867820
18
- dataset_size: 18605155
19
- configs:
20
- - config_name: default
21
- data_files:
22
- - split: train
23
- path: data/train-*
24
- - split: validation
25
- path: data/validation-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - information-retrieval
6
+ tags:
7
+ - reranking
8
+ - scientific-papers
9
+ - MTEB
10
+ language:
11
+ - en
12
+ size_categories:
13
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+
16
+ # SciDocs Reranking with Train Split
17
+
18
+ This dataset adds a training split to the original [mteb/scidocs-reranking](https://huggingface.co/datasets/mteb/scidocs-reranking) dataset.
19
+
20
+ ## Dataset Info
21
+
22
+ - **Train**: 6,367 examples
23
+ - **Validation**: 1,592 examples
24
+ - **Total**: 7,959 examples
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from datasets import load_dataset
30
+
31
+ dataset = load_dataset("Bibek/scidocs-reranking-train")
32
+ train_data = dataset['train']
33
+ val_data = dataset['validation']
34
+ ```
35
+
36
+ ## Original Dataset
37
+
38
+ Based on the SciDocs benchmark from the SPECTER paper:
39
+ - Paper: https://arxiv.org/abs/2004.07180
40
+ - Original: https://huggingface.co/datasets/mteb/scidocs-reranking
41
+
42
+ ## Citation
43
+
44
+ ```bibtex
45
+ @inproceedings{cohan2020specter,
46
+ title={SPECTER: Document-level Representation Learning using Citation-informed Transformers},
47
+ author={Arman Cohan and Sergey Feldman and Iz Beltagy and Doug Downey and Daniel Weld},
48
+ booktitle={ACL},
49
+ year={2020}
50
+ }
51
+ ```