| # π΅ NotaGen: Advancing Musicality in Symbolic Music Generation with Large Language Model Training Paradigms | |
| <p align="center"> | |
| <!-- ArXiv --> | |
| <a href="https://arxiv.org/abs/2502.18008"> | |
| <img src="https://img.shields.io/badge/NotaGen_Paper-ArXiv-%23B31B1B?logo=arxiv&logoColor=white" alt="Paper"> | |
| </a> | |
| | |
| <!-- HuggingFace --> | |
| <a href="https://huggingface.co/ElectricAlexis/NotaGen"> | |
| <img src="https://img.shields.io/badge/NotaGen_Weights-HuggingFace-%23FFD21F?logo=huggingface&logoColor=white" alt="Weights"> | |
| </a> | |
| | |
| <!-- HuggingFace Space --> | |
| <a href="https://huggingface.co/spaces/ElectricAlexis/NotaGen"> | |
| <img src="https://img.shields.io/badge/NotaGen_Space-Huggingface-β¨οΈ?logo=huggingface&logoColor=white" alt="Space"> | |
| </a> | |
| | |
| <!-- Web Demo --> | |
| <a href="https://electricalexis.github.io/notagen-demo/"> | |
| <img src="https://img.shields.io/badge/NotaGen_Demo-Web-%23007ACC?logo=google-chrome&logoColor=white" alt="Demo"> | |
| </a> | |
| </p> | |
| <p align="center"> | |
| <img src="notagen.png" alt="NotaGen" width="50%"> | |
| </p> | |
| ## π Overview | |
| **NotaGen** is a symbolic music generation model that explores the potential of producing **high-quality classical sheet music**. Inspired by the success of Large Language Models (LLMs), NotaGen adopts a three-stage training paradigm: | |
| - π§ **Pre-training** on 1.6M musical pieces | |
| - π― **Fine-tuning** on ~9K classical compositions with `period-composer-instrumentation` prompts | |
| - π **Reinforcement Learning** using our novel **CLaMP-DPO** method (no human annotations or pre-defined rewards required.) | |
| Check our [demo page](https://electricalexis.github.io/notagen-demo/) and enjoy music composed by NotaGen! | |
| ## βοΈ Environment Setup | |
| ```bash | |
| conda create --name notagen python=3.10 | |
| conda activate notagen | |
| conda install pytorch==2.3.0 pytorch-cuda=11.8 -c pytorch -c nvidia | |
| pip install accelerate | |
| pip install optimum | |
| pip install -r requirements.txt | |
| ``` | |
| ## ποΈ NotaGen Model Weights | |
| ### Pre-training | |
| We provide pre-trained weights of different scales: | |
| | Models | Parameters | Patch-level Decoder Layers | Character-level Decoder Layers | Hidden Size | Patch Length (Context Length) | | |
| | ---- | ---- | ---- | ---- | ---- | ---- | | |
| | [NotaGen-small](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagen_pretrain_p_size_16_p_length_2048_p_layers_12_c_layers_3_h_size_768_lr_0.0002_batch_8.pth) | 110M | 12 | 3 | 768 | 2048 | | |
| | [NotaGen-medium](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagen_pretrain_p_size_16_p_length_2048_p_layers_16_c_layers_3_h_size_1024_lr_0.0001_batch_4.pth) | 244M | 16 | 3 | 1024 | 2048 | | |
| | [NotaGen-large](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagen_pretrain_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_0.0001_batch_4.pth) | 516M | 20 | 6 | 1280 | 1024 | | |
| **Notice**: The pre-trained weights cannot be used for conditional generation based on 'period-composer-instrumentation'. | |
| ### Fine-tuning | |
| We fine-tuned NotaGen-large on a corpus of approximately 9k classical pieces. You can download the weights [here](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagen_pretrain-finetune_p_size_16_p_length_1024_p_layers_c_layers_6_20_h_size_1280_lr_1e-05_batch_1.pth). | |
| ### Reinforcement-Learning | |
| After pre-training and fine-tuning, we optimized NotaGen-large with 3 iterations of CLaMP-DPO. You can download the weights [here](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagen_pretrain-finetune-RL3_beta_0.1_lambda_10_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-06_batch_1.pth). | |
| ### π NotaGen-X | |
| Inspired by Deepseek-R1, we further optimized the training procedures of NotaGen and released a better version --- [NotaGen-X](https://huggingface.co/ElectricAlexis/NotaGen/blob/main/weights_notagenx_p_size_16_p_length_1024_p_layers_20_h_size_1280.pth). Compared to the version in the paper, NotaGen-X incorporates the following improvements: | |
| - We introduced a post-training stage between pre-training and fine-tuning, refining the model with a classical-style subset of the pre-training dataset. | |
| - We removed the key augmentation in the Fine-tune stage, making the instrument range of the generated compositions more reasonable. | |
| - After RL, we utilized the resulting checkpoint to gather a new set of post-training data. Starting from the pre-trained checkpoint, we conducted another round of post-training, fine-tuning, and reinforcement learning. | |
| If you want to add a new composer style to NotaGen-X, please refer to issue [#18](https://github.com/ElectricAlexis/NotaGen/issues/18) for more instructions :D | |
| ## πΉ Demo | |
| ### Online Gradio Demo | |
| We developed an [online gradio demo](https://huggingface.co/spaces/ElectricAlexis/NotaGen) on Huggingface Space for NotaGen-X. You can input **"Period-Composer-Instrumentation"** as the prompt to have NotaGen generate music, preview the audio / pdf scores, and download them :D | |
| <p align="center"> | |
| <img src="gradio/illustration_online.png" alt="NotaGen Gradio Demo"> | |
| </p> | |
| ### Local Gradio Demo | |
| We developed a local Gradio demo for NotaGen-X. You can input **"Period-Composer-Instrumentation"** as the prompt to have NotaGen generate musicοΌ | |
| <p align="center"> | |
| <img src="gradio/illustration.png" alt="NotaGen Gradio Demo"> | |
| </p> | |
| Deploying NotaGen-X inference locally may require 8GB of GPU memory. For implementation details, please view [gradio/README.md](https://github.com/ElectricAlexis/NotaGen/blob/main/gradio/README.md). We are also working on developing an online demo. | |
| ### Online Colab Notebook | |
| Thanks for [@deeplearn-art](https://github.com/deeplearn-art/NotaGen)'s contribution of a [Google Colab notebook for NotaGen](https://colab.research.google.com/drive/1yJA1wG0fiwNeehdQxAUw56i4bTXzoVVv?usp=sharing)! You can run it and access to a Gradio public link to play with this demo. π€© | |
| ### ComfyUI | |
| Thanks for [@billwuhao](https://github.com/billwuhao/ComfyUI_NotaGen)'s contribution of [a ComfyUI node for NotaGen](https://github.com/billwuhao/ComfyUI_NotaGen)! It can automatically convert generated .abc to .xml, .mp3, and .png formats. You can listen to the generated music and see the sheet music too! Please visit the [repository page](https://github.com/billwuhao/ComfyUI_NotaGen) for more information. π€© | |
| <p align="center"> | |
| <img src="https://github.com/billwuhao/ComfyUI_NotaGen/blob/master/images/2025-03-10_06-24-03.png" alt="NotaGen ComfyUI"> | |
| </p> | |
| ## π οΈ Data Pre-processing & Post-processing | |
| For converting **ABC notation** files from / to **MusicXML** files, please view [data/README.md](https://github.com/ElectricAlexis/NotaGen/blob/main/data/README.md) for instructions. | |
| To illustrate the specific data format, we provide a small dataset of **Schubert's lieder** compositions from the [OpenScore Lieder](https://github.com/OpenScore/Lieder), which includes: | |
| - ποΈ Interleaved ABC folders | |
| - ποΈ Augmented ABC folders | |
| - π Data index files for training and evaluation | |
| You can download it [here](https://drive.google.com/drive/folders/1iVLkcywzXGcHFodce9nDQyEmK4UDmBtY?usp=sharing) and put it under ```data/```. | |
| In the instructions of **Fine-tuning** and **Reinforcement Learning** below, we will use this dataset as an example of our implementation. **It won't include the "period-composer-instrumentation" conditioning**, just for showing how to adapt the pretrained NotaGen to a specific music style. | |
| ## π§ Pre-train | |
| If you want to use your own data to pre-train a blank **NotaGen** model, please: | |
| 1. Preprocess the data and generate the data index files following the instructions in [data/README.md](https://github.com/ElectricAlexis/NotaGen/blob/main/data/README.md) | |
| 2. Modify the parameters in ```pretrain/config.py``` | |
| Use this command for pre-training: | |
| ```bash | |
| cd pretrain/ | |
| accelerate launch --multi_gpu --mixed_precision fp16 train-gen.py | |
| ``` | |
| ## π― Fine-tune | |
| Here we give an example on fine-tuning **NotaGen-large** with the **Schubert's lieder** data mentioned above. | |
| **Notice:** The use of **NotaGen-large** requires at least **24GB of GPU memory** for training and inference. Alternatively, you may use **NotaGen-small** or **NotaGen-medium** and change the configuration of models in ```finetune/config.py```. | |
| ### Configuration | |
| - In ```finetune/config.py```: | |
| - Modify the ```DATA_TRAIN_INDEX_PATH``` and ```DATA_EVAL_INDEX_PATH```: | |
| ```python | |
| # Configuration for the data | |
| DATA_TRAIN_INDEX_PATH = "../data/schubert_augmented_train.jsonl" | |
| DATA_EVAL_INDEX_PATH = "../data/schubert_augmented_eval.jsonl" | |
| ``` | |
| - Download pre-trained NotaGen weights, and modify the ```PRETRAINED_PATH```: | |
| ```python | |
| PRETRAINED_PATH = "../pretrain/weights_notagen_pretrain_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_0.0001_batch_4.pth" # Use NotaGen-large | |
| ``` | |
| - ```EXP_TAG``` is for differentiating the models. It will be integrated into the ckpt's name. Here we set it to ```schubert```. | |
| - You can also modify other parameters like the learning rate. | |
| ### Execution | |
| Use this command for fine-tuning: | |
| ```bash | |
| cd finetune/ | |
| CUDA_VISIBLE_DEVICES=0 python train-gen.py | |
| ``` | |
| ## π Reinforcement Learning (CLaMP-DPO) | |
| Here we give an example on how to use **CLaMP-DPO** to enhance the model fine-tuned with **Schubert's lieder** data. | |
| ### βοΈ [CLaMP 2](https://github.com/sanderwood/clamp2) Setup | |
| Download model weights and put them under the ```clamp2/```folder: | |
| - [CLaMP 2 Model Weights](https://huggingface.co/sander-wood/clamp2/blob/main/weights_clamp2_h_size_768_lr_5e-05_batch_128_scale_1_t_length_128_t_model_FacebookAI_xlm-roberta-base_t_dropout_True_m3_True.pth) | |
| - [M3 Model Weights](https://huggingface.co/sander-wood/clamp2/blob/main/weights_m3_p_size_64_p_length_512_t_layers_3_p_layers_12_h_size_768_lr_0.0001_batch_16_mask_0.45.pth) | |
| ### π Extract Ground Truth Features | |
| Modify ```input_dir``` and ```output_dir``` in ```clamp2/extract_clamp2.py```: | |
| ```python | |
| input_dir = '../data/schubert_interleaved' # interleaved abc folder | |
| output_dir = 'feature/schubert_interleaved' # feature folder | |
| ``` | |
| Extract the features: | |
| ``` | |
| cd clamp2/ | |
| python extract_clamp2.py | |
| ``` | |
| ### π CLaMP-DPO | |
| Here we give an example of an iteration of **CLaMP-DPO** from the initial model fine-tuned on **Schubert's lieder** data. | |
| #### 1. Inference | |
| - Modify the ```INFERENCE_WEIGHTS_PATH``` to path of the fine-tuned weights and ```NUM_SAMPLES``` to generate in ```inference/config.py```: | |
| ```python | |
| INFERENCE_WEIGHTS_PATH = '../finetune/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1.pth' | |
| NUM_SAMPLES = 1000 | |
| ``` | |
| - Inference: | |
| ``` | |
| cd inference/ | |
| python inference.py | |
| ``` | |
| This will generate an ```output/```folder with two subfolders: ```original``` and ```interleaved```. The ```original/``` subdirectory stores the raw inference outputs from the model, while the ```interleaved/``` subdirectory contains data post-processed with rest measure completion, compatible with CLaMP 2. Each of these subdirectories will contain a model-specific folder, named as a combination of the model's name and its sampling parameters. | |
| #### 2. Extract Generated Data Features | |
| Modify ```input_dir``` and ```output_dir``` in ```clamp2/extract_clamp2.py```: | |
| ```python | |
| input_dir = '../output/interleaved/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' # interleaved abc folder | |
| output_dir = 'feature/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' # feature folder | |
| ``` | |
| Extract the features: | |
| ``` | |
| cd clamp2/ | |
| python extract_clamp2.py | |
| ``` | |
| #### 3. Statistics on Averge CLaMP 2 Score (Optional) | |
| If you're interested in the **Average CLaMP 2 Score** of the current model, modify the parameters in ```clamp2/statistics.py```: | |
| ```python | |
| gt_feature_folder = 'feature/schubert_interleaved' | |
| output_feature_folder = 'feature/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' | |
| ``` | |
| Then run this script: | |
| ``` | |
| cd clamp2/ | |
| python statistics.py | |
| ``` | |
| #### 4. Construct Preference Data | |
| Modify the parameters in ```RL/data.py```: | |
| ```python | |
| gt_feature_folder = '../clamp2/feature/schubert_interleaved' | |
| output_feature_folder = '../clamp2/feature/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' | |
| output_original_abc_folder = '../output/original/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' | |
| output_interleaved_abc_folder = '../output/interleaved/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1_k_9_p_0.9_temp_1.2' | |
| data_index_path = 'schubert_RL1.json' # Data for the first iteration of RL | |
| data_select_portion = 0.1 | |
| ``` | |
| In this script, the **CLaMP 2 Score** of each generated piece will be calculated and sorted. The portion of data in the chosen and rejected sets is determined by ```data_select_portion```. Additionally, there are also three rules to exclude problematic sheets from the chosen set: | |
| - Sheets with duration alignment problems are excluded; | |
| - Sheets that may plagiarize from ground truth data (ld_sim>0.95) are excluded; | |
| - Sheets where staves for the same instrument are not grouped together are excluded. | |
| The prefence data file will be names as ```data_index_path```, which records the file paths in chosen and rejected sets. | |
| Run this script: | |
| ``` | |
| cd RL/ | |
| python data.py | |
| ``` | |
| #### 5. DPO Training | |
| Modify the parameters in ```RL/config.py```: | |
| ```python | |
| DATA_INDEX_PATH = 'schubert_RL1.json' # Preference data path | |
| PRETRAINED_PATH = '../finetune/weights_notagen_schubert_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-05_batch_1.pth' # The model to go through DPO optimization | |
| EXP_TAG = 'schubert-RL1' # Model tag for differentiation | |
| ``` | |
| You can also modify other parameters like ```OPTIMATION_STEPS``` and DPO hyper-parameters. | |
| Run this script: | |
| ``` | |
| cd RL/ | |
| CUDA_VISIBLE_DEVICES=0 python train.py | |
| ``` | |
| After training, a model named ```weights_notagen_schubert-RL1_beta_0.1_lambda_10_p_size_16_p_length_1024_p_layers_20_c_layers_6_h_size_1280_lr_1e-06.pth``` will be saved under ```RL/```. For the second round of CLaMP-DPO, please go back to the first inference stage, and let the new model to generate pieces. | |
| For this small experiment on **Schubert's lieder** data, we post our **Average CLaMP 2 Score** here for the fine-tuned model and models after each iteration of CLaMP-DPO, as a reference: | |
| | CLaMP-DPO Iteration (K) | Average CLaMP 2 Score | | |
| | ---- | ---- | | |
| | 0 (fine-tuned) | 0.324 | | |
| | 1 | 0.579 | | |
| | 2 | 0.778 | | |
| If you are interested in this method, have a try on your own style-specific dataset :D | |
| ## π Citation | |
| If you find **NotaGen** or **CLaMP-DPO** useful in your work, please cite our paper. | |
| ```bibtex | |
| @misc{wang2025notagenadvancingmusicalitysymbolic, | |
| title={NotaGen: Advancing Musicality in Symbolic Music Generation with Large Language Model Training Paradigms}, | |
| author={Yashan Wang and Shangda Wu and Jianhuai Hu and Xingjian Du and Yueqi Peng and Yongxin Huang and Shuai Fan and Xiaobing Li and Feng Yu and Maosong Sun}, | |
| year={2025}, | |
| eprint={2502.18008}, | |
| archivePrefix={arXiv}, | |
| primaryClass={cs.SD}, | |
| url={https://arxiv.org/abs/2502.18008}, | |
| } | |
| ``` | |