Our objective is to find a way to quantify similarity of performances for which we have a matched score. But first, we have to answer the following questions :
The concept of self-similarity matrices is fundamental for capturing structural properties of music recordings. Generally, one starts with a feature space L containing the elements of the feature sequence under consideration as well as with a similarity measure $f : \mathcal{L} \times \mathcal{L} \to \mathbb{R}$.
Right Arrow
or Space
Left Arrow
Home
End
Esc
S
F
Alt + Click
E
Examples :
Typical Cadences | |
---|---|
$\textrm{V}$ & - & $\textrm{I}$ | authentic |
$\textrm{I}$ & - & $\textrm{V}$ | half |
$\textrm{IV}$ & - & $\textrm{I}$ | plagal |
$\textrm{V}$ & - & $\textrm{VI}$ | deceptive |
Interval Vectors are commutative, i.e. $\textrm{V} \to \textrm{I} = \textrm{I} \to \textrm{V} $:
Inline code: variable
Code block:
porridge = "blueberry"
if porridge == "blueberry":
print("Eating...")
For every window $w_i^j$ we compute the interval vector of all notes in thye window/ Therefore, $\textrm{Int_Vec}(w_i^j)\in \mathbb{N}^6$. $$ \mathcal(W) = \sum_{i=1}^N\sum_{j=1}^\nu \textrm{Int_Vec}(w_i^j) $$ Then, let $\mathcal{X}$ be some matrix decomposition of $\mathcal{W}$. The SSM $\mathcal{S}$ of $\mathcal{X}$ is: $$ \mathcal{S} = \frac{\mathcal{X} \cdot \mathcal{X}}{| \mathcal{X} |^2} $$
\begin{tikzpicture} \matrix (m) [matrix of math nodes,row sep=3em,column sep=4em,minimum width=2em] { F & B \ & A \}; \path[-stealth] (m-1-1) edge node [above] {$\beta$} (m-1-2) (m-1-2) edge node [right] {$\rho$} (m-2-2) (m-1-1) edge node [left] {$\alpha$} (m-2-2); \end{tikzpicture}
Make content appear incrementally
{{% fragment %}} One {{% /fragment %}}
{{% fragment %}} **Two** {{% /fragment %}}
{{% fragment %}} Three {{% /fragment %}}
Press Space
to play!
A fragment can accept two optional parameters:
class
: use a custom style (requires definition in custom CSS)weight
: sets the order in which a fragment appearsAdd speaker notes to your presentation
{{% speaker_note %}}
- Only the speaker can read these notes
- Press `S` key to view
{{% /speaker_note %}}
Press the S
key to view the speaker notes!
Customize the slide style and background
{{< slide background-image="/media/boards.jpg" >}}
{{< slide background-color="#0000FF" >}}
{{< slide class="my-style" >}}
Let’s make headers navy colored.
Create assets/css/reveal_custom.css
with:
.reveal section h1,
.reveal section h2,
.reveal section h3 {
color: navy;
}