Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- eu
|
| 5 |
+
pretty_name: Antton Dataset
|
| 6 |
+
size_categories:
|
| 7 |
+
- 10k<n<100k
|
| 8 |
+
task_categories:
|
| 9 |
+
- text-to-speech
|
| 10 |
+
- automatic-speech-recognition
|
| 11 |
+
tags:
|
| 12 |
+
- audio
|
| 13 |
+
- TTS
|
| 14 |
+
- Basque
|
| 15 |
+
- Aholab
|
| 16 |
+
- Ilenia
|
| 17 |
+
- synthetic
|
| 18 |
+
- common-voice
|
| 19 |
+
base_model:
|
| 20 |
+
- itzune/antton-tts
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Antton Dataset (Synthetic)
|
| 24 |
+
|
| 25 |
+
This is a large-scale **synthetic speech corpus** designed for training and fine-tuning Basque Text-to-Speech (TTS) models. It consists of **99,996 audio files** synthesized from the "Antton" voice model.
|
| 26 |
+
|
| 27 |
+
This dataset was generated by **Itzune** and serves as the primary source for training the [itzune/antton-tts (Piper version)](https://huggingface.co/itzune/antton-tts) model.
|
| 28 |
+
|
| 29 |
+
## Dataset Structure
|
| 30 |
+
|
| 31 |
+
Due to the large volume of data (approx. 100,000 files), the dataset is organized in the **WebDataset** format. The audio files are bundled into `.tar` shards to optimize storage, I/O performance, and streaming.
|
| 32 |
+
|
| 33 |
+
### Files
|
| 34 |
+
- **data/**: Directory containing the `.tar` shards.
|
| 35 |
+
- **metadata.csv**: The main metadata file using `|` as a delimiter:
|
| 36 |
+
- `file_name`: The name of the audio file (e.g., `audio_1.wav`).
|
| 37 |
+
- `transcription`: The corresponding Basque text.
|
| 38 |
+
|
| 39 |
+
## Technical Specifications
|
| 40 |
+
|
| 41 |
+
- **Audio Format:** WAV (PCM)
|
| 42 |
+
- **Sample Rate:** 22050 Hz
|
| 43 |
+
- **Language:** Basque (eu)
|
| 44 |
+
- **Voice Profile:** Antton (Male)
|
| 45 |
+
- **Text Source:** [Mozilla Common Voice - Basque Sentence Collection](https://datacollective.mozillafoundation.org/datasets/cmj8u3p2v007tnxxbk5ng5qvh)
|
| 46 |
+
- **Generation Method:** Synthesized using VITS-based architecture.
|
| 47 |
+
|
| 48 |
+
## Usage
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from datasets import load_dataset
|
| 52 |
+
|
| 53 |
+
dataset = load_dataset("itzune/antton-dataset", streaming=True)
|
| 54 |
+
sample = next(iter(dataset["train"]))
|
| 55 |
+
print(f"Text: {sample['transcription']}")
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
## Credits and Licensing
|
| 59 |
+
### Source and Methodology
|
| 60 |
+
|
| 61 |
+
This is a synthetic dataset generated by Itzune. The synthesis process involved:
|
| 62 |
+
|
| 63 |
+
- **Text Acquisition**: Sentences were sourced from the Mozilla Common Voice project (Basque sentence collection).
|
| 64 |
+
|
| 65 |
+
- **Audio Synthesis**: The audio was produced using the aHoTTS synthesis tools and the pre-trained Antton (VITS) model developed by HiTZ Basque Center for Language Technology - Aholab Signal Processing Laboratory.
|
| 66 |
+
|
| 67 |
+
### Acknowledgments
|
| 68 |
+
|
| 69 |
+
Mozilla Common Voice: For providing the community-driven sentence collection.
|
| 70 |
+
|
| 71 |
+
HiTZ Basque Center for Language Technology - Aholab Signal Processing Laboratory: For the underlying synthesis technology and the Antton voice model.
|
| 72 |
+
|
| 73 |
+
Project ILENIA: The original Maider voice resource was developed with funding from Project ILENIA.
|
| 74 |
+
|
| 75 |
+
### License
|
| 76 |
+
|
| 77 |
+
Dataset Content (Audio & Text): Licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
|
| 78 |
+
|
| 79 |
+
Original Tools/Code: The aHoTTS tools used to generate this data are licensed under the Apache License 2.0.
|
| 80 |
+
|
| 81 |
+
## Citation
|
| 82 |
+
If you use this dataset, please cite the original work from HiTZ/Aholab:
|
| 83 |
+
> García, V., Hernáez, I., & Navas, E. (2022). Evaluation of Tacotron Based Synthesizers for Spanish and Basque. Applied Sciences, 12(3), 1686. https://doi.org/10.3390/app12031686
|
| 84 |
+
|