Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    RuntimeError
Message:      Dataset scripts are no longer supported, but found fleurs-hs-vits.py
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 67, in compute_config_names_response
                  config_names = get_dataset_config_names(
                      path=dataset,
                      token=hf_token,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                      path,
                  ...<4 lines>...
                      **download_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1215, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1175, in dataset_module_factory
                  raise RuntimeError(f"Dataset scripts are no longer supported, but found {filename}")
              RuntimeError: Dataset scripts are no longer supported, but found fleurs-hs-vits.py

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

FLEURS-HS VITS

An extension of the FLEURS dataset for synthetic speech detection using text-to-speech, featured in the paper Synthetic speech detection with Wav2Vec 2.0 in various language settings.

This dataset is 1 of 3 used in the paper, the others being:

Dataset Details

Dataset Description

The dataset features 8 languages originally seen in FLEURS:

  • German
  • English
  • Spanish
  • French
  • Italian
  • Dutch
  • Polish
  • Swedish

The synthetic samples are generated using:

Only the test VITS samples are provided. For every VITS voice, which is in practice specific model weights, one sample per transcript is provided.

  • Curated by: KONTXT by RealNetworks
  • Funded by: RealNetworks
  • Language(s) (NLP): English, German, Spanish, French, Italian, Dutch, Polish, Swedish
  • License: Apache 2.0 for the code, CC BY 4.0 for the dataset (but various licenses depending on the source for VITS samples)

Dataset Sources

The original FLEURS dataset was downloaded from HuggingFace.

  • FLEURS Repository: HuggingFace

  • FLEURS Paper: arXiv

  • Paper: Synthetic speech detection with Wav2Vec 2.0 in various language settings

Uses

This dataset is best used as a difficult test set. Each sample contains an Audio feature, and a label, which is always synthetic; this dataset does not include any human samples.

Direct Use

The following snippet of code demonstrates loading the training split for English:

from datasets import load_dataset

fleurs_hs = load_dataset(
    "realnetworks-kontxt/fleurs-hs-vits",
    "en_us",
    split="test",
    trust_remote_code=True,
)

To load a different language, change en_us into one of the following:

  • de_de for German
  • es_419 for Spanish
  • fr_fr for French
  • it_it for Italian
  • nl_nl for Dutch
  • pl_pl for Polish
  • sv_se for Swedish

This dataset only has a test split.

The trust_remote_code=True parameter is necessary because this dataset uses a custom loader. To check out which code is being ran, check out the loading script.

Dataset Structure

The dataset data is contained in the data directory.

There exists 1 directory per language.

Within that directory, there is a directory named splits; it contains 1 file per split:

  • test.tar.gz

That .tar.gz file contains 1 or more directories, named after the VITS model being used: ex. thorsten-vits

Each of these directories contain .wav files. Each .wav file is named after the ID of its transcript. Keep in mind that these directories can't be merged as they share their file names. An identical file name implies a speaker-voice pair, ex. human/123.wav and thorsten-vits/123.wav.

Finally, back to the language directory, it contains 3 metadata files, which are not used in the loaded dataset, but might be useful to researchers:

  • recording-metadata.csv
    • contains the transcript ID, file name, split and gender of the original FLEURS samples
  • recording-transcripts.csv
    • contains the transcrpits of the original FLEURS samples
  • voice-metadata.csv
    • contains the groupation of TTS' used alongside the splits they were used for

Sample

A sample contains contains an Audio feature audio, and a string label.

{
  'audio': {
    'path': 'ljspeech-vits/1660.wav',
    'array': array([0.00119019, 0.00109863, 0.00106812, ..., 0., 0., 0.]),
    'sampling_rate': 16000
  },
  'label': 'synthetic'
}

Citation

The dataset is featured alongside our paper, Synthetic speech detection with Wav2Vec 2.0 in various language settings, which is published on IEEE International Conference on Acoustics, Speech, and Signal Processing Workshops (ICASSPW).

BibTeX:

If you use this work, please cite us by including the following BibTeX reference:

@inproceedings{dropuljic-ssdww2v2ivls,
  author={Dropuljić, Branimir and Šuflaj, Miljenko and Jertec, Andrej and Obadić, Leo},
  booktitle={{IEEE} International Conference on Acoustics, Speech, and Signal Processing, {ICASSP} 2024 - Workshops, Seoul, Republic of Korea, April 14-19, 2024},
  title={Synthetic Speech Detection with Wav2vec 2.0 in Various Language Settings},
  year={2024},
  month={04},
  pages={585-589},
  publisher={{IEEE}},
  volume={},
  number={},
  keywords={Synthetic speech detection;text-to-speech;wav2vec 2.0;spoofing attack;multilingualism},
  url={https://doi.org/10.1109/ICASSPW62465.2024.10627750},
  doi={10.1109/ICASSPW62465.2024.10627750}
}

Dataset Card Authors

Dataset Card Contact

Downloads last month
130

Paper for realnetworks-kontxt/fleurs-hs-vits