Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- sentence-similarity
|
5 |
+
- feature-extraction
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
---
|
9 |
+
|
10 |
+
# Dataset Card for "scidocs"
|
11 |
+
|
12 |
+
## Table of Contents
|
13 |
+
- [Table of Contents](#table-of-contents)
|
14 |
+
- [Dataset Description](#dataset-description)
|
15 |
+
- [Dataset Summary](#dataset-summary)
|
16 |
+
- [Dataset Structure](#dataset-structure)
|
17 |
+
- [Data Instances](#data-instances)
|
18 |
+
- [Data Fields](#data-fields)
|
19 |
+
- [Additional Information](#additional-information)
|
20 |
+
- [Licensing Information](#licensing-information)
|
21 |
+
- [Citation Information](#citation-information)
|
22 |
+
|
23 |
+
## Dataset Description
|
24 |
+
|
25 |
+
|
26 |
+
- **Homepage:** [https://github.com/allenai/scidocs](https://github.com/allenai/scidocs)
|
27 |
+
|
28 |
+
### Dataset Summary
|
29 |
+
|
30 |
+
This is a modified version of the original scidocs dataset for retrieval tasks. The original is availabe [here](https://github.com/allenai/scidocs).
|
31 |
+
|
32 |
+
## Dataset Structure
|
33 |
+
|
34 |
+
### Data Instances
|
35 |
+
|
36 |
+
An example of 'train' looks as follows.
|
37 |
+
|
38 |
+
```json
|
39 |
+
{
|
40 |
+
"title": "Discovery of inference rules for question-answering",
|
41 |
+
"abstract": "One of the main challenges in question-answering is the potential mismatch between the expressions in questions and ...",
|
42 |
+
}
|
43 |
+
```
|
44 |
+
|
45 |
+
### Data Fields
|
46 |
+
|
47 |
+
The data fields are the same among all splits.
|
48 |
+
|
49 |
+
- `title`: a `string` feature.
|
50 |
+
- `abstract`: a `string` feature.
|
51 |
+
|
52 |
+
## Additional Information
|
53 |
+
|
54 |
+
### Licensing Information
|
55 |
+
|
56 |
+
This dataset is distributed under the cc-by-4.0 license.
|
57 |
+
|
58 |
+
### Citation Information
|
59 |
+
|
60 |
+
BibTeX:
|
61 |
+
```json
|
62 |
+
@inproceedings{specter2020cohan,
|
63 |
+
title={SPECTER: Document-level Representation Learning using Citation-informed Transformers},
|
64 |
+
author={Arman Cohan and Sergey Feldman and Iz Beltagy and Doug Downey and Daniel S. Weld},
|
65 |
+
booktitle={ACL},
|
66 |
+
year={2020}
|
67 |
+
}
|
68 |
+
```
|