Design decisions for tempo, beat, and downbeat

To this point we hope you have an idea of the many different variations of systems for beat and downbeat tracking! In the following we discuss the importance of the different design choices for these systems, to gain some insights of the more critical aspects of it, and comment on our insight on what matters the most.

Design of beat/downbeat systems.

Fig. 19 Design choices include input granularity and representation, architecture and postprocessing.

Input representation

Several different input representations have been studied in the context of both beat and downbeat tracking: harmonic-based (e.g. chroma), event-oriented (e.g. spec-flux), spectrograms, etc.

Even though there are works that show advantages of using multiple input representations to increase robustness across different music genres [DBDR16, DBDR17, FMC+19, FMC+18, KBockDW16, ZDGomez14], results obtained using spectrograms have shown to be as competitive, and thus is not clear that adding multiple features is an advantage, especially since it increases the system’s complexity considerably (e.g. if the multiple representations are included as an ensamble of networks like [DBDR16, DBDR17, FMC+19, FMC+18, KBockDW16]).`

Tip

You can use a log-spectrogram or mel-spectrogram to simplify your pipeline and get sota results!

Granularity

The temporal granularity of the input observations (or temporal grid) relates to important aspects of the design of beat and downbeat tracking systems. It determines the length of the context taken into account around musical events, which controls design decisions in the network architecture, such as filter sizes in a CNN, or the length of training sequences in an RNN.

Among the different systems, several granularities have been used. In particular, some systems use either musically motivated temporal grids (such as tatums or beats) [DBDR16, FMC+18, KBockDW16] or fixed length frames [BockKW16]. Systems that use beat- or tatum-synchronous input depend on reliable beat/tatum estimation upstream, so they are inherently more complex, and prone to error propagation. On the other hand, frame-based systems are not subject to these problems, but the input dimensionality is much higher due to the increased observation rate, which causes difficulties when training the models.

CNNs tend to handle limited context so coarser granularities, and it has been shown that RNNs work better with coarser granularities [FMC+18] as they have more difficulty to model long temporal dependencies which are inherent to finer granularities. On the other hand CRNNs or LSTMs seem more robust to different coarseness. TCNs are more robust to finer granularities and are able to extract information at different time scales.

Tip

The choice of the input granularity should match the architecture used. A simple approach is to use architectures that are more robust to different granularities and not worry about it (see above).

DNN architecture

Given the same data, input features, post-processing and evaluation scheme different architectures can achieve similar performance [FMC+18], if the input granularity and architecture is optimized for performance. In other words, architecture matters more because of model complexity, portability or interpretability than for performance.

Tip

Several architectures perform comparably, so the most relevant choice might be simplicity and interpretability of the system.

Post-processing

The importance of the post-processing stage has been mentioned in multiple works [DBDR17, FMC+18, KBockDW16]. So far, post-processing with most graphical models almost always helps improve the model. However, the importance of this stage (i.e. how much it improves performance) depends on the temporal granularity, the network architecture and the dataset. For datasets with very danceable genres post-processing can boost performance considerably [FMC+18].

Tip

Post-processing using graphical models almost always improves performance (and rarely hurts), and different variants of graphical models (discriminative, generative, HMMS, CRFS, DBNS) perform similarly.