Skip to content

Sounds like an output midi lost a content input style. #16

Answered by cifkao
moonsh asked this question in Q&A
Discussion options

You must be logged in to vote

Normally only the harmony is preserved from the content input. Neither style nor the melody of the content input is preserved. This is why I'm adding the content melody to the output.

To achieve what you want, you could try to interpolate the styles of both songs as described in section VI.E of the paper. You would need to feed both songs to the style encoder to obtain two style embeddings s1 and s2 and then "blend" them e.g. with s = 0.4 * s1 + 0.6 * s2 and feed this s to the decoder as the new style embedding. But note that this still won't allow you to preserve any specific parts of the content input, e.g. there will still be no melody. All the model will try to do is come up with an a…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@moonsh
Comment options

Answer selected by cifkao
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #15 on June 27, 2021 14:31.