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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -5,4 +5,11 @@ pretty_name: cc100-sr derivation by JeRTeh
5
  ---
6
 
7
  As the title suggests, this dataset is a derivative of the cc100-sr common-crawl based dataset for Serbian.
8
- It was deduplicated on the sentence level, and transliterated into latin alphabet.
 
 
 
 
 
 
 
 
5
  ---
6
 
7
  As the title suggests, this dataset is a derivative of the cc100-sr common-crawl based dataset for Serbian.
8
+ It was deduplicated on the sentence level, and transliterated into latin alphabet.
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"]