Add model card, pipeline tag, and links to paper and code
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-nc-4.0
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
pipeline_tag: audio-classification
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# MADB (Music Aesthetics Dataset and Benchmark) Models
|
| 7 |
+
|
| 8 |
+
This repository contains the trained model weights and evaluation configurations presented in the paper [MADB: A Large-Scale Music Aesthetics Dataset with Professional and Multi-Dimensional Annotations](https://huggingface.co/papers/2607.06929).
|
| 9 |
+
|
| 10 |
+
MADB provides a framework for evaluating and predicting fine-grained, multi-dimensional human perceptual judgments (aesthetic assessment) of music.
|
| 11 |
+
|
| 12 |
+
* **Repository / Code:** [GitHub - knownree/madb](https://github.com/knownree/madb)
|
| 13 |
+
* **Dataset:** [sirui1/MADB-Dataset](https://huggingface.co/datasets/sirui1/MADB-Dataset)
|
| 14 |
+
|
| 15 |
+
## Setup Environment
|
| 16 |
+
|
| 17 |
+
To run the evaluations, set up the environment as detailed in the official repository:
|
| 18 |
+
|
| 19 |
+
```bash
|
| 20 |
+
conda create -n madb python=3.11 -y
|
| 21 |
+
conda activate madb
|
| 22 |
+
pip install torch==2.7.0 torchvision==0.22.0 torchaudio==2.7.0 --index-url https://download.pytorch.org/whl/cu118
|
| 23 |
+
pip install -r requirements.txt
|
| 24 |
+
conda install -c conda-forge ffmpeg
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Quick Start (with MUQ Evaluation)
|
| 28 |
+
|
| 29 |
+
After downloading the model files to your local repository directory, you can perform evaluations by converting audio, extracting embeddings, and running predictions:
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
python code/to_wav.py --input_dir sample/sample_audio/ --output_dir muq/wav/ --mode muq
|
| 33 |
+
python code/muq_extractor.py --input_dir muq/wav/ --output_dir muq/emb/
|
| 34 |
+
python code/test.py --config code/muq_config.py --output_csv muq/result/test/test.csv
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
Please refer to the [official GitHub repository](https://github.com/knownree/madb) for complete instructions on evaluation with CLAP, Qwen, and custom training steps.
|
| 38 |
+
|
| 39 |
+
## Citation
|
| 40 |
+
|
| 41 |
+
If you find this work or the associated models useful, please cite:
|
| 42 |
+
|
| 43 |
+
```bibtex
|
| 44 |
+
@article{madb2026,
|
| 45 |
+
title={MADB: A Large-Scale Music Aesthetics Dataset with Professional and Multi-Dimensional Annotations},
|
| 46 |
+
journal={arXiv preprint arXiv:2607.06929},
|
| 47 |
+
year={2026}
|
| 48 |
+
}
|
| 49 |
+
```
|