Datasets:

Modalities:
Text
Formats:
json
Languages:
Serbian
Size:
< 1K
Libraries:
Datasets
pandas
License:
procesaur commited on
Commit
0c1928d
·
1 Parent(s): a3cef96

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -13,7 +13,9 @@ The corpus includes 120 novels with 5,263.071 words, 22700 pages, 2557 chapters,
13
 
14
  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:
15
 
 
16
  from json import load
17
 
18
  with open("ELTeC.json") as jf:
19
  sentences = load(jf)["sents"]
 
 
13
 
14
  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:
15
 
16
+ ```python
17
  from json import load
18
 
19
  with open("ELTeC.json") as jf:
20
  sentences = load(jf)["sents"]
21
+ ```