Difference between revisions of "2024:Symbolic Music Generation"

From MIREX Wiki
(Description)
(References)
 
(3 intermediate revisions by the same user not shown)
Line 139: Line 139:
 
=Baselines=
 
=Baselines=
  
'''WholeSongGen''' (Wang et al., 2023)
+
To establish a benchmark for this task, we have several options for baseline models, subjective to the availability of official implementations:
  
This model generates accompaniment using the diffusion model.
+
'''WholeSongGen''' (Wang et al., 2024)
  
'''Accomontage''' (Zhao et al., 2020)
+
This model generates piano accompaniment using a diffusion model.
  
This algorithm generates accompaniment using a combination of rule-based search and deep representation learning.
+
'''AccoMontage''' (Zhao et al., 2021)
 +
 
 +
This algorithm generates piano accompaniment using a combination of rule-based search and deep representation learning.
 +
 
 +
'''Compound Word Transformer''' (Hsiao et al., 2021)
 +
 
 +
This model generates piano performance using a Transformer-based architecture.  
  
 
'''Anticipatory Music Transformer''' (Thickstun et al., 2024)
 
'''Anticipatory Music Transformer''' (Thickstun et al., 2024)
  
This model generates accompaniment using a Transformer-based model.
+
A Transformer-based model for track infilling and accompaniment generation. While the current implementation does not explicitly consider chord input, it remains a relevant starting point to study with.
  
 +
'''PopMAG''' (Ren et al., 2020)
 +
 +
A Transformer-based model for multi-track accompaniment generation.
  
 
=Contacts=
 
=Contacts=
Line 159: Line 168:
  
 
=References=
 
=References=
* Harte, C. (2010). Towards automatic extraction of harmony information from music signals (Doctoral dissertation).* Lu, P., Xu, X., Kang, C., Yu, B., Xing, C., Tan, X., & Bian, J. (2023). Musecoco: Generating symbolic music from text. arXiv preprint arXiv:2306.00110.
+
* Harte, C. Towards automatic extraction of harmony information from music signals. PhD Diss. 2010.
* Wang, Z., Min, L., & Xia, G. Whole-Song Hierarchical Generation of Symbolic Music Using Cascaded Diffusion Models. In The Twelfth International Conference on Learning Representations.
+
* Lu, P., et al. Musecoco: Generating symbolic music from text. arXiv preprint arXiv:2306.00110 (2023).
* Jingwei Zhao, & Gus Xia (2021). AccoMontage: Accompaniment Arrangement via Phrase Selection and Style Transfer. In Proceedings of the 22nd International Society for Music Information Retrieval Conference, ISMIR 2021, Online, November 7-12, 2021 (pp. 833–840).
+
* Wang, Z., et al. Whole-song hierarchical generation of symbolic music using cascaded diffusion models, in ICLR 2024.
* Thickstun, J., Hall, D., Donahue, C., & Liang, P. (2023). Anticipatory music transformer. arXiv preprint arXiv:2306.08620.
+
* Zhao, J., & Xia, G. Accomontage: Accompaniment arrangement via phrase selection and style transfer, in ISMIR 2021.
 +
* Thickstun, J., et al. Anticipatory music transformer, TMLR, 2024.
 +
* Hsiao, W. Y., et al. Compound word transformer: Learning to compose full-song music over dynamic directed hypergraphs, in AAAI 2021.
 +
* Ren, Y., et al. Popmag: Pop music accompaniment generation, in MM 2020.
 +
 
 
* Code and data format samples: [https://github.com/ZZWaang/acc-gen-8bar-wholesong/tree/main https://github.com/ZZWaang/acc-gen-8bar-wholesong/tree/main]
 
* Code and data format samples: [https://github.com/ZZWaang/acc-gen-8bar-wholesong/tree/main https://github.com/ZZWaang/acc-gen-8bar-wholesong/tree/main]

Latest revision as of 13:22, 16 September 2024

Description

Symbolic music generation is a broad topic. It covers a wide range of tasks, including generation, harmonization, arrangement, instrumentation, and more. We have multiple ways to represent music data, and the evaluation metrics also vary. To define a MIREX challenge within this topic, we need to narrow our focus to specific subtasks that are both relevant to the community and feasible to evaluate effectively.

This year, we select the task to be piano accompaniment arrangement from a lead sheet. The lead sheet provides information about the melody, and chord progression. The goal is to generate a piano accompaniment that complements the lead melody. The music data consists of 8-measure segments in 4/4 meter, quantized to a sixteenth-note resolution. A more detailed description of the data structure is provided in the data format section. The genre of the lead sheets is broadly within western pop music (refer to the music examples for more detail).

Data Format

The input lead sheet consists of 8 bars for the melody and harmony, with an additional mandatory pickup measure (left blank if not used). The data is prepared in JSON format containing two properties: melody and chords:

  • melody: a list of notes. Each note contains properties of start, pitch, and duration.
  • chords: a list of chords. Each chord contains properties of start, symbol, and duration.

The output generation should also follow the JSON format containing one property acc:

  • acc: a list of notes. Each note contains properties of start, pitch, and duration.

Detailed explanation of start and duration attributes.

  1. The data is assumed to be in 4/4 meter, quantized to a sixteenth-note resolution. For both melody and chords, onsets and durations are counted in sixteenth notes.
  2. Both onsets and durations are integers ranging from 0 to 9 * 16 - 1 = 143. Notes that end later than the ninth measure (i.e., 9 * 16 = 144th time step) will be truncated to the end of the ninth measure.
  3. Melody notes are not allowed to overlap with one another.
  4. There should be no gaps or overlaps between chords. Chords must follow one another directly. If there is a blank space where no chord is played, it must be filled with the N chord.
  5. The accompaniment of the pick-up measure should be blank.

Detailed explanation of the pitch attribute.

  1. The pitch property of a note should be integers ranging from 0 to 127, corresponding to the MIDI pitch numbers.

Detailed explanation of the chord symbol attribute.

  1. The symbol property of a chord should be a string based on the syntax of (Harte, 2010). In other words, each chord string should be able to be passed as a parameter to mir_eval.chord.encode() without causing an error.


Data Example

Below is an example of the input lead sheet in the format given above. The lead sheet is the melody of the first phrase of Hey Jude by The Beatles.

{
  "melody": [
    {"start": 12, "pitch": 72, "duration": 4},
    {"start": 16, "pitch": 69, "duration": 8},
    ...
  ],
  "chords": [
    {"start": 0, "symbol": "N", "duration": 16},
    {"start": 16, "symbol": "F", "duration": 16},
    ...
  ]
}


This is an example of the generated accompaniment. The accompaniment is generated using the baseline method WholeSongGen introduced below. Note that the generation starts from the second measure (time step 16).

{
  "acc": [
    {"start": 16, "pitch": 41, "duration": 12},
    {"start": 16, "pitch": 65, "duration": 5},
    ...
  ]
}

Full data examples can be accessed in this code repository. MIDI conversion code and MIDI demos are also provided there.


Evaluation and Competition Format

We will evaluate the submitted algorithms through an online subjective double-blind test. The evaluation format differs from conventional tasks in the following aspects:

  • We use a "potluck" test set. Before submitting the algorithm, each team is required to submit two lead sheets. The organizer team will supplement the lead sheet if necessary.
  • There will be no live ranking because the subjective test will be done after the algorithm submission deadline.
  • To better handle randomness in the generation algorithm, we allow cherry-picking from a fixed number of generated samples.
  • We hope to compute some objective measurements as well, but these will only be reported as a reference.

Subjective Evaluation Format

  • After each team submits the algorithm, the organizer team will use the algorithm to generate 16 arrangements for each test sample. The generated results will be returned to each team for cherry-picking.
  • Only a subset of the test set will be used for subjective evaluation.
  • In the subjective evaluation, we will first ask the subjects to listen to the lead melody with chords and then listen to the generated samples in random order. The order of the samples will be randomized.
  • The subject will be asked to rate each arrangement based on the following criteria:
  • Harmony correctness (5-point scale)
  • Creativity (5-point scale)
  • Naturalness (5-point scale)
  • Overall musicality (5-point scale)

Objective Measurements

  • We will use objective measurements only as a reference. The correlation between subjective and objective scores will be measured as a reference.
  • The current plan is to compute the Negative Log Likelihood of a large music language model (e.g., Lu et al., 2023).
  • We welcome proposals of the objective measurements.

Important Dates

  • Oct 8, 2024: Submit two lead sheets as a part of the test set.
  • Oct 15, 2024: Submit the main algorithm.
  • Oct 22, 2024: Return the generated samples. The cherry-picking phase begins.
  • Oct 25, 2024: Submit the cherry-picked sample ids.
  • Oct 31 - Nov 3, 2024: Online subjective evaluation.
  • Nov 5, 2024: Announce the final result.


Submission

As a generative task with subjective evaluation, the submission process differs greatly from other MIREX tasks. There are four important stages:

  1. Test set submission (Oct 8, 2024)
  2. Algorithm submission (Oct 15, 2024)
  3. Cherry-picked sample IDs submission (Oct 25, 2024)
  4. Evaluation form submission (Nov 3, 2024)

Please check the Important Dates section for the detailed schedule. Failure to participate in any of the stages will result in disqualification.


Algorithm Submission

Participants must include an batch_acc_gen.sh script in their submission. The task captain will use the script to generate output files according to the following format:

Usage

acc_gen.sh "/path/to/input.json" "/path/to/output_folder" n_sample
  • Input File: Path to the input .json file.
  • Output Folder: Path to the folder where the generated output files will be saved.
  • n_sample: Number of samples to generate.

Output

  • The script should generate n_sample output files in the specified output folder.
  • Output files should be named sequentially as sample_01.json, sample_02.json, ..., up to sample_n_sample.json.

Participants are free to implement the internal logic of the script, but it must adhere to this format for proper execution during the evaluation process.

Packaging Submissions

  • Every submission must be packed into a docker image
  • Every submission will be deployed and evaluated automatically with docker run

Accepted submission form

  • Link to public or private Github repository
  • Link to public or private docker hub
  • Shared google drive links
  • If the repository is private, an access token is also required


Baselines

To establish a benchmark for this task, we have several options for baseline models, subjective to the availability of official implementations:

WholeSongGen (Wang et al., 2024)

This model generates piano accompaniment using a diffusion model.

AccoMontage (Zhao et al., 2021)

This algorithm generates piano accompaniment using a combination of rule-based search and deep representation learning.

Compound Word Transformer (Hsiao et al., 2021)

This model generates piano performance using a Transformer-based architecture.

Anticipatory Music Transformer (Thickstun et al., 2024)

A Transformer-based model for track infilling and accompaniment generation. While the current implementation does not explicitly consider chord input, it remains a relevant starting point to study with.

PopMAG (Ren et al., 2020)

A Transformer-based model for multi-track accompaniment generation.

Contacts

If you any questions or suggestions about the task, please contact:

  • Ziyu Wang: ziyu.wang<at>nyu.edu
  • Jingwei Zhao: jzhao<at>u.nus.edu


References

  • Harte, C. Towards automatic extraction of harmony information from music signals. PhD Diss. 2010.
  • Lu, P., et al. Musecoco: Generating symbolic music from text. arXiv preprint arXiv:2306.00110 (2023).
  • Wang, Z., et al. Whole-song hierarchical generation of symbolic music using cascaded diffusion models, in ICLR 2024.
  • Zhao, J., & Xia, G. Accomontage: Accompaniment arrangement via phrase selection and style transfer, in ISMIR 2021.
  • Thickstun, J., et al. Anticipatory music transformer, TMLR, 2024.
  • Hsiao, W. Y., et al. Compound word transformer: Learning to compose full-song music over dynamic directed hypergraphs, in AAAI 2021.
  • Ren, Y., et al. Popmag: Pop music accompaniment generation, in MM 2020.