Karavet commited on
Commit
f8e4649
1 Parent(s): 70b3b8a

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ARPA: Armenian Paraphrase Detection Corpus and Models
2
+
3
+ We provide sentential paraphrase detection train, test datasets as well as BERT-based models for the Armenian language.
4
+
5
+ To sentences in the dataset are taken from [Hetq](https://hetq.am/) and [Panarmenian](http://www.panarmenian.net/) news articles.
6
+
7
+ To generate paraphrase for the sentences, we used back translation from Armenian to English. We repeated the step twice, after which the generated paraphrases were manually reviewed. Invalid sentences were filtered out, while the rest were labelled as either paraphrase, near paraphrase or non-paraphrase (with 1, 0, -1 labels respectively). The sentences are divided into train and test sets. Test examples were reviewed by 3 different annotators. In addition, to increase the number of non-paraphrase pairs, we padded the dataset with automatically generated negative examples, including pairs of consecutive sentences and random pairs.
8
+
9
+ |Number of examples|Total|Paraphrase|Non-paraphrase (near paraphrase)|
10
+ |:-- | :---: | :---: | :---: |
11
+ |Train | 4233 |1339 |2683 (211) |
12
+ |Test | 1682 |1021 |448 (213) |
13
+
14
+ We finetuned Multilingual BERT on several training sets, including the proposed ARPA dataset, and evaluated their performance on our test set. During training and evaluation, near paraphrase and non-paraphrase pairs were combined into one class. The results are provided below:
15
+
16
+ |BERT Model | Train set | F1 | Acc. |
17
+ |:-- | :---: | :---: | :---: |
18
+ |Multilingual BERT | ARPA train set| 84.27| 78.06|
19
+ |Multilingual BERT | Paraphraser.ru train set machine-translated into Armenian | 83.81 | 77.09 |
20
+ |Multilingual BERT | MRPC train set machine-translated into Armenian | 80.07 | 69.87 |
21
+ |Multilingual BERT | All of the above combined | 84 |77.6 |
22
+
23
+ The model trained on ARPA is available for use, and can be downloaded using this [link](https://drive.google.com/uc?id=14owW5kkZ1JiNa6P-676e-QIj8m8i5e_8).
24
+
25
+ For more details about the models and dataset construction, refer to the [paper](https://arxiv.org/pdf/2009.12615).