Susana Sotelo Docio commited on
Commit
71095de
·
1 Parent(s): 9b2054b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -41,3 +41,26 @@ The PAWS-gl dataset (Paraphrase Adversaries from Word Scrambling in Galician) is
41
 
42
  Paraphrase Identification, Language Model
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  Paraphrase Identification, Language Model
43
 
44
+ ## Dataset Structure
45
+
46
+ ### Data Instances
47
+
48
+ This dataset contains more than 2000 entries. Two examples are provided below:
49
+
50
+ ```
51
+ | | Sentence 1 | Sentence 2 | Label |
52
+ | :-- | :---------------------------- | :---------------------------- | :---- |
53
+ | 10 | A excepción foi entre finais de 2005 e 2009 cando xogou en Suecia co Carlstad United BK, Serbia co FK Borac Čačak e o FC ruso Terek Grozny. | A excepción deuse entre finais de 2005 e 2009, cando xogou en Suecia co Carlstad United BK, Serbia co FK Borac Čačak e o FC ruso Terek Grozny. | 1 |
54
+ | 12 | O Tabaci é un afluente do río Leurda en Romanía. | O Leurda é un afluente do río Tabaci en Romanía. | 0 |
55
+ ```
56
+
57
+ Each label has two possible values: `0` indicates the pair has different meaning, while `1` indicates the pair is a paraphrase.
58
+
59
+ ### Data Fields
60
+
61
+ - `id`: a string identifier
62
+ - `sentence1`: a string containing the first sentence
63
+ - `sentence2`: a string containing the second sentence
64
+ - `label`: a binary label indicating whether the two sentences are paraphrases of each other
65
+
66
+