CCRss commited on
Commit
995e7ab
1 Parent(s): 1468814

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - 100K<n<1M
7
+ ---
8
+
9
+ #TODO scepify model repository
10
+
11
+ # CS Research Dataset
12
+
13
+ ## Description
14
+ This dataset is a collection of scientific abstracts from the field of computer science, sourced from arXiv. It was created to facilitate research in natural language processing, specifically for tasks such as thematic modeling, trend analysis, and keyword extraction.
15
+
16
+ ## Dataset Structure
17
+ The dataset is structured as follows:
18
+
19
+ - **title**: Title of the research paper.
20
+ - **id**: Unique identifier for each abstract.
21
+ - **abstract**: Abstract of the research paper.
22
+ - **categories**: Categories associated with the paper, primarily within the field of computer science.
23
+ - **doi**: Digital Object Identifier for the paper.
24
+ - **created**: Date when the paper was submitted to arXiv.
25
+ - **updated**: Date when the paper was last updated.
26
+ - **authors**: List of authors of the paper.
27
+ - **url**: URL to the original paper on arXiv.
28
+ - **abstract_length**: Length of the abstract in characters.
29
+ - **id_n**: Sequential number assigned to each abstract, starting from 0.
30
+
31
+ ## Usage
32
+ This dataset can be used for various natural language processing tasks such as thematic modeling, trend analysis, keyword extraction, and more. It is particularly suitable for researchers and practitioners interested in the latest developments in computer science.
33
+
34
+ ## How to Load the Dataset
35
+ You can load the dataset using the **datasets** library in Python:
36
+ ```
37
+ from datasets import load_dataset
38
+
39
+ dataset = load_dataset("CCRss/arxiv_papers_cs")
40
+ ```
41
+
42
+ ## Dataset Creation
43
+ The dataset was created using the **arxivscraper** library in Python to scrape abstracts from the arXiv website. Here is an example of how the data was collected:
44
+ ```
45
+ import arxivscraper
46
+
47
+ scraper = arxivscraper.Scraper(category='cs', date_from='20200101', date_until='20201231')
48
+ output = scraper.scrape()
49
+ ```
50
+ You can find a detailed example in this **[Google Colab notebook](https://colab.research.google.com/drive/1tVM6undtOJn5-KOU-74QaK3MekQXoa-G?usp=sharing)** and test it.
51
+
52
+ ## Application
53
+ This dataset was used to train a thematic modeling algorithm for analyzing trends in UAV-related research. The trained model is available in our model repository on Hugging Face.
54
+
55
+ ## Acknowledgments
56
+ We would like to acknowledge Mahdi Sadjadi for creating the **arxivscraper** library, which was instrumental in collecting data for this dataset. The library is available on Zenodo: [arxivscraper (2017)](http://doi.org/10.5281/zenodo.889853).
57
+
58
+ ## License
59
+ This dataset is provided under the MIT License.