de-francophones commited on
Commit
ebc3f5a
·
verified ·
1 Parent(s): c19f6fc

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ - en
5
+ configs:
6
+ - config_name: French
7
+ data_files:
8
+ - split: train
9
+ path: "fr/*"
10
+ - config_name: French_simple
11
+ data_files:
12
+ - split: train
13
+ path: "frsimple/*"
14
+ - config_name: English
15
+ data_files:
16
+ - split: train
17
+ path: "en/*"
18
+ - config_name: English_simple
19
+ data_files:
20
+ - split: train
21
+ path: "ensimple/*"
22
+ ---
23
+
24
+ > [!NOTE]
25
+ > Dataset origin: https://zenodo.org/records/6327828
26
+
27
+
28
+ ## Data creation
29
+ - All article pages of Vikidia-Fr (https://fr.vikidia.org/wiki/Vikidia:Accueil) were first filtered from the Vikidia-Fr crawl.
30
+ - Matching titles were obtained from Vikidia-En, and English and French Wikipedias, following "Other Languages" links.
31
+ - Only titles that exist in all 4 versions are listed, which were 6165 in total during the collection.
32
+ - These matching urls were then downloaded and parsed using BeautifulSoup.
33
+
34
+ ## License
35
+ Vikidia and Wikipedia are both available under CC-by-SA
36
+ (https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License)
37
+ and this dataset will follow the same license, as per their guidelines.
38
+
39
+
40
+ ## Citation
41
+ ```
42
+ @inproceedings{lee-vajjala-2022-neural,
43
+ title = "A Neural Pairwise Ranking Model for Readability Assessment",
44
+ author = "Lee, Justin and
45
+ Vajjala, Sowmya",
46
+ editor = "Muresan, Smaranda and
47
+ Nakov, Preslav and
48
+ Villavicencio, Aline",
49
+ booktitle = "Findings of the Association for Computational Linguistics: ACL 2022",
50
+ month = may,
51
+ year = "2022",
52
+ address = "Dublin, Ireland",
53
+ publisher = "Association for Computational Linguistics",
54
+ url = "https://aclanthology.org/2022.findings-acl.300",
55
+ doi = "10.18653/v1/2022.findings-acl.300",
56
+ pages = "3802--3813",
57
+ abstract = "Automatic Readability Assessment (ARA), the task of assigning a reading level to a text, is traditionally treated as a classification problem in NLP research. In this paper, we propose the first neural, pairwise ranking approach to ARA and compare it with existing classification, regression, and (non-neural) ranking methods. We establish the performance of our approach by conducting experiments with three English, one French and one Spanish datasets. We demonstrate that our approach performs well in monolingual single/cross corpus testing scenarios and achieves a zero-shot cross-lingual ranking accuracy of over 80{\%} for both French and Spanish when trained on English data. Additionally, we also release a new parallel bilingual readability dataset, that could be useful for future research. To our knowledge, this paper proposes the first neural pairwise ranking model for ARA, and shows the first results of cross-lingual, zero-shot evaluation of ARA with neural models.",
58
+ }
59
+
60
+ ```