panagoa commited on
Commit
23b4c8b
·
verified ·
1 Parent(s): 529fc4d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -104,7 +104,7 @@ Example of a data instance:
104
  - `source_lang`: Language code of the source text (with script identifier, e.g., "eng_Latn")
105
  - `target`: Translated text in Kabardian
106
  - `target_lang`: Language code for Kabardian (kbd_Cyrl)
107
- - `model_consensus_count`: Count of model versions that produced this translation (serves as a consensus metric)
108
 
109
  ## Dataset Creation
110
 
@@ -118,11 +118,11 @@ The source data comes from [Tatoeba](https://tatoeba.org/), a free collaborative
118
  2. Filtered by language pairs
119
  3. Translated using various versions of NLLB-200-kbd model
120
  4. Translation quality was assessed using [panagoa/LaBSE-kbd-v0.1](https://huggingface.co/panagoa/LaBSE-kbd-v0.1) model
121
- 5. Additional filtering was applied to this dataset to ensure higher quality translations
122
 
123
  ### Annotations
124
 
125
- The translations were generated using different versions of NLLB-200-kbd model. This filtered dataset represents translations that met more stringent quality criteria than the original dataset.
126
 
127
  ## Considerations for Using the Data
128
 
@@ -175,6 +175,6 @@ dataset = load_dataset("panagoa/tatoeba_kbd_filtered")
175
  for example in dataset['train'].select(range(5)):
176
  print(f"Source ({example['source_lang']}): {example['source']}")
177
  print(f"Target ({example['target_lang']}): {example['target']}")
178
- print(f"Model version count: {example['model_consensus_count']}")
179
  print("---")
180
- ```
 
104
  - `source_lang`: Language code of the source text (with script identifier, e.g., "eng_Latn")
105
  - `target`: Translated text in Kabardian
106
  - `target_lang`: Language code for Kabardian (kbd_Cyrl)
107
+ - `model_consensus_count`: Count of model versions that produced this identical translation. Higher values indicate greater consensus among different model versions, serving as a reliability metric for the translation quality
108
 
109
  ## Dataset Creation
110
 
 
118
  2. Filtered by language pairs
119
  3. Translated using various versions of NLLB-200-kbd model
120
  4. Translation quality was assessed using [panagoa/LaBSE-kbd-v0.1](https://huggingface.co/panagoa/LaBSE-kbd-v0.1) model
121
+ 5. Additional filtering was applied based on a consensus mechanism - only translations that were consistently produced by multiple model versions (tracked in model_consensus_count field) were included in this dataset
122
 
123
  ### Annotations
124
 
125
+ The translations were generated using different versions of NLLB-200-kbd model. This filtered dataset represents translations that met more stringent quality criteria than the original dataset, particularly focusing on consensus among different model versions.
126
 
127
  ## Considerations for Using the Data
128
 
 
175
  for example in dataset['train'].select(range(5)):
176
  print(f"Source ({example['source_lang']}): {example['source']}")
177
  print(f"Target ({example['target_lang']}): {example['target']}")
178
+ print(f"Model consensus count: {example['model_consensus_count']}")
179
  print("---")
180
+ ```