Datasets:

Multilinguality: translation
Size Categories: 100K<n<1M
Language Creators: found
Annotations Creators: found
Source Datasets: original
License: afl-3.0
Dataset Preview
Go to dataset viewer
The dataset preview is not available for this split.
The split features (columns) cannot be extracted.
Error code:   FeaturesError
Exception:    ValueError
Message:      Not able to read records in the JSON file at https://huggingface.co/datasets/VanessaSchenkel/translation-en-pt/resolve/17487444fd4af0e275d41e60c1134aa7e530e54f/translate-en-pt.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['data']. Select the correct one and provide it as `field='XXX'` to the dataset loading method. 
Traceback:    Traceback (most recent call last):
                File "/src/workers/datasets_based/src/datasets_based/workers/first_rows.py", line 475, in compute_first_rows_response
                  iterable_dataset = iterable_dataset._resolve_features()
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 1617, in _resolve_features
                  features = _infer_features_from_batch(self._head())
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 804, in _head
                  return _examples_to_batch(list(self.take(n)))
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 917, in __iter__
                  for key, example in ex_iterable:
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 658, in __iter__
                  yield from islice(self.ex_iterable, self.n)
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 113, in __iter__
                  yield from self.generate_examples_fn(**self.kwargs)
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/iterable_dataset.py", line 743, in wrapper
                  for key, table in generate_tables_fn(**kwargs):
                File "/src/workers/datasets_based/.venv/lib/python3.9/site-packages/datasets/packaged_modules/json/json.py", line 168, in _generate_tables
                  raise ValueError(
              ValueError: Not able to read records in the JSON file at https://huggingface.co/datasets/VanessaSchenkel/translation-en-pt/resolve/17487444fd4af0e275d41e60c1134aa7e530e54f/translate-en-pt.json. You should probably indicate the field of the JSON file containing your records. This JSON file contain the following fields: ['data']. Select the correct one and provide it as `field='XXX'` to the dataset loading method.

Need help to make the dataset viewer work? Open an discussion for direct support.

How to use it:

from datasets import load_dataset

remote_dataset = load_dataset("VanessaSchenkel/translation-en-pt", field="data")

remote_dataset

Output:

DatasetDict({
    train: Dataset({
        features: ['id', 'translation'],
        num_rows: 260482
    })
})

Exemple:

remote_dataset["train"][5]

Output:

{'id': '5',
 'translation': {'english': 'I have to go to sleep.',
  'portuguese': 'Tenho de dormir.'}}
Downloads last month
3