Created
March 26, 2020 21:05
-
-
Save aravindpai/159a149de2d47dc5a336fb8a22ff7605 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#preparing input sequences | |
x_seq=[] | |
for i in x: | |
temp=[] | |
for j in i: | |
#assigning unique integer to every note | |
temp.append(x_note_to_int[j]) | |
x_seq.append(temp) | |
x_seq = np.array(x_seq) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment