| --- |
| annotations_creators: [crowdsourced] |
| language: [fr] |
| license: cc-by-4.0 |
| multilinguality: [monolingual] |
| pretty_name: French TTS Dataset |
| task_categories: [text-to-speech] |
| tags: [french, tts, audio, speech, voice] |
| --- |
| # π«π· French TTS Dataset |
|
|
| This dataset contains French speech audio paired with clean transcriptions, intended for training text-to-speech models such as [Spark-TTS](https://github.com/unslothai/spark-tts) or [Coqui TTS](https://github.com/coqui-ai/TTS). |
|
|
| ## π Contents |
|
|
| - `dataset.parquet` β metadata file with audio paths, transcriptions, speaker info |
| - `Audio/` β directory of all `.wav` files used for training |
|
|
| ## π Dataset Structure |
|
|
| The `dataset.parquet` file includes the following columns: |
|
|
| | Column | Description | |
| |---------------------|------------------------------------| |
| | `audio` | Path to `.wav` file | |
| | `text` | French transcription | |
| | `original_filename` | Original `.wav` file name | |
| | `clip_creation_time`| ISO-formatted timestamp (optional) | |
|
|
| ## π‘ Example |
|
|
| ```python |
| from datasets import load_dataset, Audio |
| |
| dataset = load_dataset("davidmwila/tts-french-dataset") |
| dataset = dataset.cast_column("audio", Audio()) |
| |
| print(dataset[0]) |
| ``` |
|
|
| ## β
License |
|
|
| CC-BY 4.0 |
|
|
| ## π Credits |
|
|
| Created by [David Mwila](https://huggingface.co/davidmwila) |
|
|