Datasets:

Modalities:
Text
Formats:
csv
ArXiv:
Libraries:
Datasets
pandas
License:
ashokurlana commited on
Commit
4928ab7
1 Parent(s): 4920a3f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -0
README.md CHANGED
@@ -60,7 +60,15 @@ We show an example of a Telugu-Hindi cross-lingual pair from PMIndiaSum:
60
  - 'text': A string containing the article text
61
  - 'summary': A string containing the article summary
62
 
 
 
 
63
 
 
 
 
 
 
64
  ## Creation Details
65
  #### Data source
66
  The data source is [PMIndia](https://www.pmindia.gov.in/) with license information at [here](https://www.pmindia.gov.in/en/website-policies/).
 
60
  - 'text': A string containing the article text
61
  - 'summary': A string containing the article summary
62
 
63
+ ### Load dataset using hf-dataset class
64
+ ```python
65
+ from datasets import load_dataset
66
 
67
+ dataset = load_dataset("PMIndiaData/PMIndiaSum", "hindi-telugu")
68
+ # you can use the combination of any of the following config names as a second argument:
69
+ # "assamese", "bengali", "english", "gujarati", "hindi", "kannada", "malayalm", "manipuri", "marathi", "punjabi", "odia", "telugu", "tamil", "urdu"
70
+
71
+ ```
72
  ## Creation Details
73
  #### Data source
74
  The data source is [PMIndia](https://www.pmindia.gov.in/) with license information at [here](https://www.pmindia.gov.in/en/website-policies/).