pt-sk commited on
Commit
75d0c04
1 Parent(s): ab174bf

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +99 -3
README.md CHANGED
@@ -1,3 +1,99 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: title
5
+ dtype: string
6
+ - name: abstract
7
+ dtype: string
8
+ - name: journal
9
+ dtype: string
10
+ - name: date
11
+ dtype: timestamp[s]
12
+ - name: authors
13
+ sequence: string
14
+ - name: doi
15
+ dtype: string
16
+ splits:
17
+ - name: train
18
+ num_bytes: 2477946
19
+ num_examples: 1035
20
+ download_size: 1290257
21
+ dataset_size: 2477946
22
+ license: apache-2.0
23
+ ---
24
+
25
+ # COVID-19 and SARS-CoV-2 Research Papers Dataset
26
+
27
+ The COVID-19 and SARS-CoV-2 Research Papers Dataset is a collection of research papers related to COVID-19 and the SARS-CoV-2 virus. This dataset provides information such as paper titles, abstracts, journals, publication dates, authors, and DOIs.
28
+
29
+ ## Dataset Details
30
+
31
+ - Dataset Name: COVID-19 and SARS-CoV-2 Research Papers Dataset
32
+ - Dataset Size: 2,477,946 bytes
33
+ - Number of Examples: 1,035
34
+ - Download Size: 1,290,257 bytes
35
+ - License: Apache-2.0
36
+
37
+ ## Dataset Fields
38
+
39
+ The dataset contains the following fields:
40
+
41
+ - **Title**: The title of the research paper. (dtype: string)
42
+ - **Abstract**: The abstract of the research paper. (dtype: string)
43
+ - **Journal**: The journal in which the research paper was published. (dtype: string)
44
+ - **Date**: The publication date of the research paper. (dtype: timestamp[s])
45
+ - **Authors**: The authors of the research paper. (sequence: string)
46
+ - **DOI**: The Digital Object Identifier (DOI) of the research paper. (dtype: string)
47
+
48
+ ## Dataset Splits
49
+
50
+ The dataset is split into the following:
51
+
52
+ - **Train**: This split contains 1,035 examples from the COVID-19 and SARS-CoV-2 research papers.
53
+
54
+ ## Usage
55
+
56
+ You can use the COVID-19 and SARS-CoV-2 Research Papers Dataset for various purposes, including text mining, natural language processing (NLP) tasks, and analyzing research trends in the context of COVID-19.
57
+
58
+ ## Loading the Dataset
59
+
60
+ To load the COVID-19 and SARS-CoV-2 Research Papers Dataset, you can use the Hugging Face Datasets library. Here's an example:
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ # Load the dataset
66
+ dataset = load_dataset('Falah/research_paper_in_ml')
67
+
68
+ # Access the fields
69
+ titles = dataset['train']['title']
70
+ abstracts = dataset['train']['abstract']
71
+ journals = dataset['train']['journal']
72
+ dates = dataset['train']['date']
73
+ authors = dataset['train']['authors']
74
+ dois = dataset['train']['doi']
75
+ ```
76
+
77
+ ## Citation
78
+
79
+ If you use this dataset in your research or any other work, please consider citing it as:
80
+
81
+ ```
82
+ @dataset{falah_covid19_sarscov2_research_dataset,
83
+ author = {Falah.G.Salieh},
84
+ title = {COVID-19 and SARS-CoV-2 Research Papers Dataset},
85
+ year = {2023},
86
+ publisher = {Hugging Face},
87
+ version = {1.0},
88
+ location = {Online},
89
+ url = {https://huggingface.co/datasets/falah/research_paper_in_ml}
90
+ }
91
+ ```
92
+
93
+ ## License
94
+
95
+ The COVID-19 and SARS-CoV-2 Research Papers Dataset is provided under the Apache-2.0 license.
96
+
97
+
98
+ ```
99
+