system HF staff commited on
Commit
151be87
1 Parent(s): 9f52a8e

Update files from the datasets library (from 1.17.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.17.0

Files changed (1) hide show
  1. README.md +75 -7
README.md CHANGED
@@ -19,10 +19,11 @@ task_categories:
19
  - other
20
  task_ids:
21
  - other-other-machine-translation
22
- paperswithcode_id: null
 
23
  ---
24
 
25
- # Dataset Card for [Dataset Name]
26
 
27
  ## Table of Contents
28
  - [Dataset Description](#dataset-description)
@@ -58,7 +59,7 @@ paperswithcode_id: null
58
 
59
  ### Dataset Summary
60
 
61
- [More Information Needed]
62
 
63
  ### Supported Tasks and Leaderboards
64
 
@@ -72,15 +73,71 @@ paperswithcode_id: null
72
 
73
  ### Data Instances
74
 
75
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  ### Data Fields
78
 
79
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
 
81
  ### Data Splits
82
 
83
- [More Information Needed]
84
 
85
  ## Dataset Creation
86
 
@@ -134,11 +191,22 @@ paperswithcode_id: null
134
 
135
  ### Licensing Information
136
 
137
- [More Information Needed]
138
 
139
  ### Citation Information
140
 
 
 
 
 
 
 
 
 
 
 
141
  [More Information Needed]
 
142
  ### Contributions
143
 
144
  Thanks to [@sumanthd17](https://github.com/sumanthd17) for adding this dataset.
 
19
  - other
20
  task_ids:
21
  - other-other-machine-translation
22
+ paperswithcode_id: bilingual-corpus-of-arabic-english-parallel
23
+ pretty_name: Bilingual Corpus of Arabic-English Parallel Tweets
24
  ---
25
 
26
+ # Dataset Card for Bilingual Corpus of Arabic-English Parallel Tweets
27
 
28
  ## Table of Contents
29
  - [Dataset Description](#dataset-description)
 
59
 
60
  ### Dataset Summary
61
 
62
+ Twitter users often post parallel tweets—tweets that contain the same content but are written in different languages. Parallel tweets can be an important resource for developing machine translation (MT) systems among other natural language processing (NLP) tasks. This resource is a result of a generic method for collecting parallel tweets. Using the method, we compiled a bilingual corpus of English-Arabic parallel tweets and a list of Twitter accounts who post English-Arabic tweets regularly. Additionally, we annotate a subset of Twitter accounts with their countries of origin and topic of interest, which provides insights about the population who post parallel tweets.
63
 
64
  ### Supported Tasks and Leaderboards
65
 
 
73
 
74
  ### Data Instances
75
 
76
+ parallelTweets:
77
+ ```
78
+ {
79
+ "ArabicTweetID": 981111245209243600,
80
+ "EnglishTweetID": 981111450432401400
81
+ }
82
+ ```
83
+
84
+ accountList:
85
+ ```
86
+ {
87
+ 'account': 'HukoomiQatar'
88
+ }
89
+ ```
90
+
91
+ countryTopicAnnotation:
92
+ ```
93
+ {
94
+ 'account': 'HukoomiQatar',
95
+ 'country': 'QA',
96
+ 'topic': 'Gov'
97
+ }
98
+ ```
99
 
100
  ### Data Fields
101
 
102
+ parallelTweets:
103
+ - `ArabicTweetID` (int)
104
+ - `EnglishTweetID` (int)
105
+
106
+ accountList:
107
+ - `account` (str)
108
+
109
+ countryTopicAnnotation:
110
+ - `account` (str)
111
+ - `country` (class label): One of:
112
+ - "QA",
113
+ - "BH",
114
+ - "AE",
115
+ - "OM",
116
+ - "SA",
117
+ - "PL",
118
+ - "JO",
119
+ - "IQ",
120
+ - "Other",
121
+ - "EG",
122
+ - "KW",
123
+ - "SY"
124
+ - `topic` (class label): One of:
125
+ - "Gov",
126
+ - "Culture",
127
+ - "Education",
128
+ - "Sports",
129
+ - "Travel",
130
+ - "Events",
131
+ - "Business",
132
+ - "Science",
133
+ - "Politics",
134
+ - "Health",
135
+ - "Governoment",
136
+ - "Media",
137
 
138
  ### Data Splits
139
 
140
+ All configuration have only one split: "test".
141
 
142
  ## Dataset Creation
143
 
 
191
 
192
  ### Licensing Information
193
 
194
+ It is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
195
 
196
  ### Citation Information
197
 
198
+ ```
199
+ @inproceedings{Mubarak2020bilingualtweets,
200
+ title={Constructing a Bilingual Corpus of Parallel Tweets},
201
+ author={Mubarak, Hamdy and Hassan, Sabit and Abdelali, Ahmed},
202
+ booktitle={Proceedings of 13th Workshop on Building and Using Comparable Corpora (BUCC)},
203
+ address={Marseille, France},
204
+ year={2020}
205
+ }
206
+ ```
207
+
208
  [More Information Needed]
209
+
210
  ### Contributions
211
 
212
  Thanks to [@sumanthd17](https://github.com/sumanthd17) for adding this dataset.