rom1504 / audio2dataset

Easily turn large sets of audio urls to an audio dataset.
MIT License
20 stars 5 forks source link

audio2dataset

pypi Try it on gitpod Chat on discord

Easily turn large sets of audio urls to an audio dataset.

Not ready for show time yet, see #1 and #2

Install

pip install audio2dataset

Examples

Example of datasets to download with example commands are available in the dataset_examples folder. In particular:

Usage

First get some audio url list. For example:

echo 'https://freesound.org/apiv2/audios/632625/download/' >> myaudiolist.txt
echo 'https://freesound.org/apiv2/audios/632619/download/' >> myaudiolist.txt

Then, run the tool:

audio2dataset --url_list=myaudiolist.txt --output_folder=output_folder --thread_count=64 --audio_size=256

The tool will then automatically download the urls, subsample them, and store them with that format:

with each number being the position in the list. The subfolders avoids having too many files in a single folder.

If captions are provided, they will be saved as 0.txt, 1.txt, ...

This can then easily be fed into machine learning training or any other use case.

Also a .parquet file will be saved with the same name as the subfolder/tar files containing these same metadata. It can be used to analyze the results efficiently.

.json files will also be saved with the same name suffixed by _stats, they contain stats collected during downloading (download time, number of success, ...)

Python examples

Checkout these examples to call this as a lib:

API

This module exposes a single function download which takes the same arguments as the command line tool:

Output format choice

audio2dataset support several formats. There are trade off for which to choose:

File system support

Thanks to fsspec, audio2dataset supports reading and writing files in many file systems. To use it, simply use the prefix of your filesystem before the path. For example hdfs://, s3://, http://, or gcs://. Some of these file systems require installing an additional package (for example s3fs for s3, gcsfs for gcs). See fsspec doc for all the details.

If you need specific configuration for your filesystem, you may handle this problem by using the fsspec configuration system that makes it possible to create a file such as .config/fsspec/s3.json and have information in it such as:

{
  "s3": {
    "client_kwargs": {
            "endpoint_url": "https://some_endpoint",
            "aws_access_key_id": "your_user",
           "aws_secret_access_key": "your_password"
    }
  }
}

Which may be necessary if using s3 compatible file systems such as minio. That kind of configuration also work for all other fsspec-supported file systems.

Distribution modes

audio2dataset supports several distributors.

multiprocessing is a good option for downloading on one machine, and as such it is the default. Pyspark lets audio2dataset use many nodes, which makes it as fast as the number of machines. It can be particularly useful if downloading datasets with more than a billion audio.

pyspark configuration

In order to use audio2dataset with pyspark, you will need to do this:

  1. pip install pyspark
  2. use the --distributor pyspark option
  3. tweak the --subjob_size 1000 option: this is the number of audios to download in each subjob. Increasing it will mean a longer time of preparation to put the feather files in the temporary dir, a shorter time will mean sending less shards at a time to the pyspark job.

By default a local spark session will be created. You may want to create a custom spark session depending on your specific spark cluster. To do that check pyspark_example.py, there you can plug your custom code to create a spark session, then run audio2dataset which will use it for downloading.

To create a spark cluster check the distributed audio2dataset tutorial

Integration with Weights & Biases

To enable wandb, use the --enable_wandb=True option.

Performance metrics are monitored through Weights & Biases.

W&B metrics

In addition, most frequent errors are logged for easier debugging.

W&B table

Other features are available:

When running the script for the first time, you can decide to either associate your metrics to your account or log them anonymously.

You can also log in (or create an account) before by running wandb login.

For development

Either locally, or in gitpod (do export PIP_USER=false there)

Setup a virtualenv:

python3 -m venv .env
source .env/bin/activate
pip install -e .

to run tests:

pip install -r requirements-test.txt

then

make lint
make test

You can use make black to reformat the code

python -m pytest -x -s -v tests -k "dummy" to run a specific test

Benchmarks

10000 audio benchmark

cd tests/test_files
bash benchmark.sh