procesaur commited on
Commit
eea253c
1 Parent(s): 346bcb1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -9,7 +9,9 @@ It was deduplicated on the sentence level, and transliterated into latin alphabe
9
 
10
  Dataset is constituted of JSON files, where the textual sentences are located in the "sents" attribute of the object root and can be obtianed via:
11
 
 
12
  from json import load
13
 
14
- with open("cc100-sr-ded.json") as jf:
15
- sentences = load(jf)["sents"]
 
 
9
 
10
  Dataset is constituted of JSON files, where the textual sentences are located in the "sents" attribute of the object root and can be obtianed via:
11
 
12
+ ```python
13
  from json import load
14
 
15
+ with open("cc100-sr-ded") as jf:
16
+ sentences = load(jf)["sents"]
17
+ ```