You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the generation algorithm to interpolate between two styles.
Given two styles as vectors, we want the algorithm to slowly change style every single time step, until it ends up with a different style by the end of the song.
E.g: [1, 0, 0] -> [0.5, 0.5, 0] -> [0, 1, 0]
This should work with a mixture of styles as well [0.5, 0.5, 0] to [0, 0.5, 0.5]
The text was updated successfully, but these errors were encountered:
I think this will be difficult to train, but you can find composers between two styles like Beethoven's music style is a transition from Baroque to Romatic styles.
It's a generation-level feature. You don't have to train it on interpolation. We have a paper written on the details that we may release in the future.
Allow the generation algorithm to interpolate between two styles.
Given two styles as vectors, we want the algorithm to slowly change style every single time step, until it ends up with a different style by the end of the song.
E.g:
[1, 0, 0]
->[0.5, 0.5, 0]
->[0, 1, 0]
This should work with a mixture of styles as well
[0.5, 0.5, 0]
to[0, 0.5, 0.5]
The text was updated successfully, but these errors were encountered: