Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,11 @@ size_categories:
|
|
9 |
|
10 |
SrpELTeC is a corpus of old Serbian novels for the first time published in the period 1840-1920. years of digitized within COST ACTION CO16204: Distant Reading for European Literary History, 2018-2022.
|
11 |
|
12 |
-
The corpus includes 120 novels with 5,263.071 words, 22700 pages, 2557 chapters, 158,317 passages, 567 songs, 2972 verses, 803 segments in foreign language and 949 mentioned works.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
SrpELTeC is a corpus of old Serbian novels for the first time published in the period 1840-1920. years of digitized within COST ACTION CO16204: Distant Reading for European Literary History, 2018-2022.
|
11 |
|
12 |
+
The corpus includes 120 novels with 5,263.071 words, 22700 pages, 2557 chapters, 158,317 passages, 567 songs, 2972 verses, 803 segments in foreign language and 949 mentioned works.
|
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"]
|