Update README.md
Browse files
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 |
+
```
|