CoolFace
Modelpublic

declare-lab/tango

sourceHugging Facecc-by-nc-sa-4.0updated 8mo agoView on Hugging Face
46likes60downloads
README.md72 linesDownload Raw Back to root
1---2license: cc-by-nc-sa-4.03datasets:4- bjoernp/AudioCaps5language:6- en7pipeline_tag: text-to-audio8tags:9- text-to-audio10---11# TANGO: Text to Audio using iNstruction-Guided diffusiOn12 13**TANGO** is a latent diffusion model for text-to-audio generation. **TANGO** can generate realistic audios including human sounds, animal sounds, natural and artificial sounds and sound effects from textual prompts. We use the frozen instruction-tuned LLM Flan-T5 as the text encoder and train a UNet based diffusion model for audio generation. We outperform current state-of-the-art models for audio generation across both objective and subjective metrics. We release our model, training, inference code and pre-trained checkpoints for the research community.14 15📣 We are releasing [**Tango-Full-FT-Audiocaps**](https://huggingface.co/declare-lab/tango-full-ft-audiocaps) which was first pre-trained on [**TangoPromptBank**](https://huggingface.co/datasets/declare-lab/TangoPromptBank), a collection of diverse text, audio pairs. We later fine tuned this checkpoint on AudioCaps. This checkpoint obtained state-of-the-art results for text-to-audio generation on AudioCaps.16 17## Code18 19Our code is released here: [https://github.com/declare-lab/tango](https://github.com/declare-lab/tango)20 21We uploaded several **TANGO** generated samples here: [https://tango-web.github.io/](https://tango-web.github.io/)22 23Please follow the instructions in the repository for installation, usage and experiments.24 25## Quickstart Guide26 27Download the **TANGO** model and generate audio from a text prompt:28 29```python30import IPython31import soundfile as sf32from tango import Tango33 34tango = Tango("declare-lab/tango")35 36prompt = "An audience cheering and clapping"37audio = tango.generate(prompt)38sf.write(f"{prompt}.wav", audio, samplerate=16000)39IPython.display.Audio(data=audio, rate=16000)40```41[An audience cheering and clapping.webm](https://user-images.githubusercontent.com/13917097/233851915-e702524d-cd35-43f7-93e0-86ea579231a7.webm)42 43The model will be automatically downloaded and saved in cache. Subsequent runs will load the model directly from cache.44 45The `generate` function uses 100 steps by default to sample from the latent diffusion model. We recommend using 200 steps for generating better quality audios. This comes at the cost of increased run-time.46 47```python48prompt = "Rolling thunder with lightning strikes"49audio = tango.generate(prompt, steps=200)50IPython.display.Audio(data=audio, rate=16000)51```52[Rolling thunder with lightning strikes.webm](https://user-images.githubusercontent.com/13917097/233851929-90501e41-911d-453f-a00b-b215743365b4.webm)53 54<!-- [MachineClicking](https://user-images.githubusercontent.com/25340239/233857834-bfda52b4-4fcc-48de-b47a-6a6ddcb3671b.mp4 "sample 1") -->55 56Use the `generate_for_batch` function to generate multiple audio samples for a batch of text prompts:57 58```python59prompts = [60    "A car engine revving",61    "A dog barks and rustles with some clicking",62    "Water flowing and trickling"63]64audios = tango.generate_for_batch(prompts, samples=2)65```66This will generate two samples for each of the three text prompts.67 68## Limitations69 70TANGO is trained on the small AudioCaps dataset so it may not generate good audio samples related to concepts that it has not seen in training (e.g. _singing_). For the same reason, TANGO is not always able to finely control its generations over textual control prompts. For example, the generations from TANGO for prompts _Chopping tomatoes on a wooden table_ and _Chopping potatoes on a metal table_ are very similar. _Chopping vegetables on a table_ also produces similar audio samples. Training text-to-audio generation models on larger datasets is thus required for the model to learn the composition of textual concepts and varied text-audio mappings. 71 72We are training another version of TANGO on larger datasets to enhance its generalization, compositional and controllable generation ability.