Update README.md
Browse files
README.md
CHANGED
|
@@ -7,7 +7,7 @@ tags:
|
|
| 7 |
|
| 8 |
# BandTok
|
| 9 |
|
| 10 |
-
|
| 11 |
|
| 12 |
## Links
|
| 13 |
|
|
@@ -86,3 +86,16 @@ audio = tokenizer.decode(tokens)
|
|
| 86 |
|
| 87 |
- BigVGAN import error: run `git clone https://github.com/NVIDIA/BigVGAN` under /bandtok.
|
| 88 |
- T5 download errors: the prompt encoder uses `t5-base`; make sure Hugging Face downloads are available or pre-cache the model.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
# BandTok
|
| 9 |
|
| 10 |
+
BandTok is a 2D audio tokenizer that represents music as a time-frequency image. This repository provides the BandTok tokenizer and a language model trained on BandTok tokens for generating 10-second music clips at 44.1 kHz from text prompts.
|
| 11 |
|
| 12 |
## Links
|
| 13 |
|
|
|
|
| 86 |
|
| 87 |
- BigVGAN import error: run `git clone https://github.com/NVIDIA/BigVGAN` under /bandtok.
|
| 88 |
- T5 download errors: the prompt encoder uses `t5-base`; make sure Hugging Face downloads are available or pre-cache the model.
|
| 89 |
+
|
| 90 |
+
## Citation
|
| 91 |
+
|
| 92 |
+
If you find this work useful, please cite:
|
| 93 |
+
|
| 94 |
+
```bibtex
|
| 95 |
+
@inproceedings{cheng2026modeling,
|
| 96 |
+
title = {Modeling Music as a Time-Frequency Image: A 2D Tokenizer for Music Generation},
|
| 97 |
+
author = {Cheng, Yuqing and Ma, Xingyu and Yu, Guochen and Gu, Xiaotao},
|
| 98 |
+
booktitle = {IEEE ICME 2026 Challenge Papers},
|
| 99 |
+
year = {2026}
|
| 100 |
+
}
|
| 101 |
+
```
|