nicolauduran45
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- text-generation
|
5 |
+
- text2text-generation
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
tags:
|
9 |
+
- keyword-generation
|
10 |
+
- Science
|
11 |
+
- Research
|
12 |
+
- Academia
|
13 |
+
- Innovation
|
14 |
+
- Technology
|
15 |
+
pretty_name: scientific papers with their author keywords
|
16 |
+
---
|
17 |
+
# SciDocs Keywords exKEYliWORD
|
18 |
+
|
19 |
+
## Dataset Description
|
20 |
+
|
21 |
+
`SciDocs2Keywords` is a dataset consisting of scientific papers (title and abstract) and their associated author-provided keywords. It is designed for use in task of keyword extraction or abstraction.
|
22 |
+
|
23 |
+
Each entry in the dataset includes:
|
24 |
+
- Title: The title of the scientific paper.
|
25 |
+
- Abstract: A brief summary of the paper.
|
26 |
+
- Author Keywords: Keywords provided by the authors to highlight the main topics or concepts of the paper.
|
27 |
+
- Source: Paper provider source API.
|
28 |
+
|
29 |
+
## Associated Model
|
30 |
+
|
31 |
+
soon...
|
32 |
+
|
33 |
+
## How to Use
|
34 |
+
To use this dataset for model training or evaluation, you can load it using the Hugging Face `datasets` library as follows:
|
35 |
+
|
36 |
+
```python
|
37 |
+
from datasets import load_dataset
|
38 |
+
|
39 |
+
dataset = load_dataset("nicolauduran45/scidocs-keywords-exkeyliword")
|
40 |
+
print(dataset[0])
|
41 |
+
```
|