Datasets:
Add files using upload-large-folder tool
Browse files
README.md
CHANGED
|
@@ -60,7 +60,7 @@ The `metadata.csv` contains the following columns:
|
|
| 60 |
from datasets import load_dataset
|
| 61 |
|
| 62 |
# Load from Hugging Face
|
| 63 |
-
dataset = load_dataset("Aybee5/
|
| 64 |
|
| 65 |
# Access the data
|
| 66 |
print(dataset[0])
|
|
@@ -73,7 +73,7 @@ print(dataset[0])
|
|
| 73 |
from datasets import load_dataset, Audio
|
| 74 |
|
| 75 |
# Load dataset
|
| 76 |
-
dataset = load_dataset("Aybee5/
|
| 77 |
|
| 78 |
# Cast audio column to specific sampling rate
|
| 79 |
dataset = dataset.cast_column("audio", Audio(sampling_rate=24000))
|
|
@@ -124,7 +124,7 @@ If you use this dataset in your research, please cite:
|
|
| 124 |
author={Your Name},
|
| 125 |
year={2025},
|
| 126 |
publisher={Hugging Face},
|
| 127 |
-
howpublished={\url{https://huggingface.co/datasets/Aybee5/
|
| 128 |
}
|
| 129 |
```
|
| 130 |
|
|
|
|
| 60 |
from datasets import load_dataset
|
| 61 |
|
| 62 |
# Load from Hugging Face
|
| 63 |
+
dataset = load_dataset("Aybee5/hausa-large-tts", split="train")
|
| 64 |
|
| 65 |
# Access the data
|
| 66 |
print(dataset[0])
|
|
|
|
| 73 |
from datasets import load_dataset, Audio
|
| 74 |
|
| 75 |
# Load dataset
|
| 76 |
+
dataset = load_dataset("Aybee5/hausa-large-tts", split="train")
|
| 77 |
|
| 78 |
# Cast audio column to specific sampling rate
|
| 79 |
dataset = dataset.cast_column("audio", Audio(sampling_rate=24000))
|
|
|
|
| 124 |
author={Your Name},
|
| 125 |
year={2025},
|
| 126 |
publisher={Hugging Face},
|
| 127 |
+
howpublished={\url{https://huggingface.co/datasets/Aybee5/hausa-large-tts}}
|
| 128 |
}
|
| 129 |
```
|
| 130 |
|