Datasets:
Adding corpus summary
Browse files
README.md
CHANGED
@@ -60,3 +60,29 @@ dataset_info:
|
|
60 |
---
|
61 |
license: cc0-1.0
|
62 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
---
|
61 |
license: cc0-1.0
|
62 |
---
|
63 |
+
### Dataset Summary
|
64 |
+
The collection of MaCoCu parallel corpora have been crawled and consist of pairs of source and target segments (one or several sentences) and additional metadata. The following metadata is included:
|
65 |
+
- "src_url" and "trg_url": source and target document URL;
|
66 |
+
- "src_text" and "trg_text": text in non-English language and in English Language;
|
67 |
+
- "bleualign_score": similarity score as provided by the sentence alignment tool Bleualign (value between 0 and 1);
|
68 |
+
- "src_deferred_hash" and "trg_deferred_hash": hash identifier for the corresponding segment;
|
69 |
+
- "src_paragraph_id" and "trg_paragraph_id": identifier of the paragraph where the segment appears in the original document;
|
70 |
+
- "src_doc_title" and "trg_doc_title": title of the documents from which segments where obtained;
|
71 |
+
- "src_crawl_date" and "trg_crawl_date": date and time when source and target documents where donwoaded;
|
72 |
+
- "src_file_type" and "trg_file_type": type of the original documents (usually HTML format);
|
73 |
+
- "src_boilerplate" and "trg_boilerplate": are source or target segments boilerplates?
|
74 |
+
- "bifixer_hash": hash identifier for the segment pair;
|
75 |
+
- "bifixer_score": score that indicates how likely are segments to be correct in their corresponding language;
|
76 |
+
- "bicleaner_ai_score": score that indicates how likely are segments to be parallel;
|
77 |
+
- "biroamer_entities_detected": do any of the segments contain personal information?
|
78 |
+
- "dsi": a DSI class (“dsi”): information whether the segment is connected to any of Digital Service Infrastructure (DSI) classes (e.g., cybersecurity, e-health, e-justice, open-data-portal), defined by the Connecting Europe Facility (https://github.com/RikVN/DSI);
|
79 |
+
- "translation_direction": translation direction and machine translation identification ("translation-direction"): the source segment in each segment pair was identified by using a probabilistic model (https://github.com/RikVN/TranslationDirection), which also determines if the translation has been produced by a machine-translation system;
|
80 |
+
- "en_document_level_variant": the language variant of English (British or American, using a lexicon-based English variety classifier - https://pypi.org/project/abclf/) was identified on document and domain level;
|
81 |
+
- "domain_en": name of the web domain for the English document;
|
82 |
+
- "en_domain_level_variant": language variant for English at the level of the web domain.
|
83 |
+
|
84 |
+
To load a language pair just indicate the dataset and the pair of languages with English first
|
85 |
+
|
86 |
+
```python
|
87 |
+
dataset = load_dataset("MaCoCu/parallel_data", "en-is")
|
88 |
+
```
|