artyomboyko
commited on
Commit
β’
f03eff0
1
Parent(s):
516a842
Update README.md
Browse files
README.md
CHANGED
@@ -38,12 +38,11 @@ size_categories:
|
|
38 |
- 100K<n<1M
|
39 |
---
|
40 |
|
41 |
-
|
42 |
|
43 |
- **Homepage:** https://yandex.ru/yaintern/training/ml-training
|
44 |
|
45 |
-
|
46 |
-
### Dataset Summary
|
47 |
This dataset was used as homework #3 in the Yandex Machine Learning 2.0 training in November 2024.
|
48 |
***This dataset is a simulation of automatically collected internet data for a low-resource language.***
|
49 |
|
@@ -52,14 +51,13 @@ In 2084, humanity made first contact with an extraterrestrial civilization livin
|
|
52 |
The Zetans provided humanity with an extensive text library in their language, including both original works and translations of known Earth texts. In turn, they were given access to Earth's libraries. However, machine translation algorithms have not yet coped well with the unusual structure of the Zetan language, which makes the translation inaccurate and incomplete.
|
53 |
Need to train a model for translating from Zetan to English.
|
54 |
|
55 |
-
|
56 |
## Supported Tasks and Leaderboards
|
57 |
Translation.
|
58 |
|
59 |
## Languages
|
60 |
The dataset contains two languages, a real one, English, and a fictional one, Zetan.
|
61 |
|
62 |
-
|
63 |
In the original dataset consists of three files in JSON Lines format. Current dataset structure:
|
64 |
|
65 |
```
|
@@ -81,18 +79,18 @@ DatasetDict({
|
|
81 |
|
82 |
|
83 |
|
84 |
-
|
85 |
There are three splits in the dataset:
|
86 |
- `train` - 300,000 translation examples. ***The data is specially noisy. There are approximately 235,000 qualitative examples.***
|
87 |
- `validation` - 500 translation examples, are used to validate the model during the fine-tuning process.
|
88 |
- `test` - 1000 translation examples, used to submit the result to a special testing system - Yandex Contest. ***There is no translation from Zetan to English in this part of the dataset!***
|
89 |
|
90 |
|
91 |
-
|
92 |
`src` - contains a phrase in the Zetan language.
|
93 |
`dst` - contains a translation from Zetan to English.
|
94 |
|
95 |
-
|
96 |
```json
|
97 |
{
|
98 |
"src":"β²β¦β β¦β¬β¦β βββ’ββ βββ±β β½β β½βͺβ¦β ββ΄βββ¦βΌβ΄ βββββ§β¨ ββ΄ββ βΈ β β±ββͺβ¨ ββͺ ββ¨ ββͺββ βΈβ±β ββ¬β¦ ββ β’βͺβ±β ββͺ β»βͺβ¨ ββββ«ββ ββ΄ββ«β±βββ΅",
|
|
|
38 |
- 100K<n<1M
|
39 |
---
|
40 |
|
41 |
+
# Dataset Description
|
42 |
|
43 |
- **Homepage:** https://yandex.ru/yaintern/training/ml-training
|
44 |
|
45 |
+
## Dataset Summary
|
|
|
46 |
This dataset was used as homework #3 in the Yandex Machine Learning 2.0 training in November 2024.
|
47 |
***This dataset is a simulation of automatically collected internet data for a low-resource language.***
|
48 |
|
|
|
51 |
The Zetans provided humanity with an extensive text library in their language, including both original works and translations of known Earth texts. In turn, they were given access to Earth's libraries. However, machine translation algorithms have not yet coped well with the unusual structure of the Zetan language, which makes the translation inaccurate and incomplete.
|
52 |
Need to train a model for translating from Zetan to English.
|
53 |
|
|
|
54 |
## Supported Tasks and Leaderboards
|
55 |
Translation.
|
56 |
|
57 |
## Languages
|
58 |
The dataset contains two languages, a real one, English, and a fictional one, Zetan.
|
59 |
|
60 |
+
# Dataset Structure
|
61 |
In the original dataset consists of three files in JSON Lines format. Current dataset structure:
|
62 |
|
63 |
```
|
|
|
79 |
|
80 |
|
81 |
|
82 |
+
## Data Splits
|
83 |
There are three splits in the dataset:
|
84 |
- `train` - 300,000 translation examples. ***The data is specially noisy. There are approximately 235,000 qualitative examples.***
|
85 |
- `validation` - 500 translation examples, are used to validate the model during the fine-tuning process.
|
86 |
- `test` - 1000 translation examples, used to submit the result to a special testing system - Yandex Contest. ***There is no translation from Zetan to English in this part of the dataset!***
|
87 |
|
88 |
|
89 |
+
## Data Fields
|
90 |
`src` - contains a phrase in the Zetan language.
|
91 |
`dst` - contains a translation from Zetan to English.
|
92 |
|
93 |
+
## Data Instances:
|
94 |
```json
|
95 |
{
|
96 |
"src":"β²β¦β β¦β¬β¦β βββ’ββ βββ±β β½β β½βͺβ¦β ββ΄βββ¦βΌβ΄ βββββ§β¨ ββ΄ββ βΈ β β±ββͺβ¨ ββͺ ββ¨ ββͺββ βΈβ±β ββ¬β¦ ββ β’βͺβ±β ββͺ β»βͺβ¨ ββββ«ββ ββ΄ββ«β±βββ΅",
|