d0r1h commited on
Commit
bc2d0f0
·
verified ·
1 Parent(s): 644fbfe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -2
README.md CHANGED
@@ -8,16 +8,29 @@ tags:
8
  - hindi
9
  - summarization
10
  - news
 
11
  pretty_name: Hindi New Summaries
12
  size_categories:
13
  - 100K<n<1M
14
  ---
15
 
16
- **Note:**
17
- This license applies to the dataset curation and summaries. Original article copyrights remain with their publishers.
 
 
 
 
 
 
 
 
 
18
 
19
  ## Licensing
20
 
 
 
 
21
  This dataset contains news articles and summaries collected from publicly
22
  available news websites.
23
 
@@ -30,3 +43,16 @@ Users of this dataset are responsible for ensuring compliance with the
30
  original source websites’ terms of use and copyright policies.
31
 
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - hindi
9
  - summarization
10
  - news
11
+ - text
12
  pretty_name: Hindi New Summaries
13
  size_categories:
14
  - 100K<n<1M
15
  ---
16
 
17
+
18
+ ## How to use this dataset
19
+
20
+
21
+ ```python
22
+ # You can load data using following code and then split into train and validation set
23
+
24
+ from datasets import load_dataset
25
+ data = load_dataset("d0r1h/HindiNewSummaries")
26
+
27
+ ```
28
 
29
  ## Licensing
30
 
31
+ **Note:**
32
+ This license applies to the dataset curation and summaries. Original article copyrights remain with their publishers.
33
+
34
  This dataset contains news articles and summaries collected from publicly
35
  available news websites.
36
 
 
43
  original source websites’ terms of use and copyright policies.
44
 
45
 
46
+ ## Citation
47
+
48
+ If you use this dataset in your research, please cite:
49
+
50
+ ```bibtex
51
+ @dataset{HindiNewSummaries,
52
+ title = {News Articles and Summaries Dataset},
53
+ author = {Pawan Trivedi},
54
+ year = {2022},
55
+ publisher = {Hugging Face},
56
+ url = {https://huggingface.co/datasets/d0r1h/HindiNewSummaries}
57
+ }
58
+