Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,20 @@ pretty_name: "JamALT: A Formatting-Aware Lyrics Transcription Benchmark"
|
|
| 13 |
|
| 14 |
# JamALT: A Formatting-Aware Lyrics Transcription Benchmark
|
| 15 |
|
| 16 |
-
JamALT is a revision of the [JamendoLyrics](https://github.com/f90/jamendolyrics) dataset,
|
| 17 |
-
adapted for use as an automatic lyrics transcription (ALT) benchmark.
|
| 18 |
|
| 19 |
-
The lyrics have been revised according to the newly compiled [annotation guidelines](GUIDELINES.md).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
# JamALT: A Formatting-Aware Lyrics Transcription Benchmark
|
| 15 |
|
| 16 |
+
JamALT is a revision of the [JamendoLyrics](https://github.com/f90/jamendolyrics) dataset, adapted for use as an automatic lyrics transcription (ALT) benchmark.
|
|
|
|
| 17 |
|
| 18 |
+
The lyrics have been revised according to the newly compiled [annotation guidelines](GUIDELINES.md).
|
| 19 |
+
|
| 20 |
+
## Loading the data
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
load_dataset("audioshake/jam-alt")
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
A subset is defined for each language (`en`, `fr`, `de`, `es`);
|
| 28 |
+
for example, use `load_dataset("audioshake/jam-alt", "es")` to load only the Spanish songs.
|
| 29 |
+
Other arguments can be specified to control audio loading:
|
| 30 |
+
- `with_audio=False` to skip loading audio.
|
| 31 |
+
- `sampling_rate` and `mono` to control the sampling rate and number of channels.
|
| 32 |
+
- `decode_audio=False` to skip decoding the audio and just return the path to the MP3 file.
|