Christopher Capobianco
commited on
Commit
•
66c8eed
1
Parent(s):
12bd6a4
Update music project description
Browse files
projects/06_Generative_Music.py
CHANGED
@@ -121,7 +121,7 @@ st.markdown("#### Data")
|
|
121 |
st.markdown("The data that our model will be trained on will consist of piano MIDI files of Final Fantasy soundtracks, but any set of MIDI files consisting of a single instrument would work.")
|
122 |
st.markdown("The sequence of notes and chords from the MIDI files are broken down into increments of 100, which are used to predict the next note or chord.")
|
123 |
st.markdown("#### Model")
|
124 |
-
st.markdown("For this project we will use a network consisting of three LSTM layers, three Dropout layers, two Dense layers and
|
125 |
left_col, cent_col, right_col = st.columns(3)
|
126 |
with cent_col:
|
127 |
st.image(lstm, caption = 'Music Generation Model', width = 250)
|
|
|
121 |
st.markdown("The data that our model will be trained on will consist of piano MIDI files of Final Fantasy soundtracks, but any set of MIDI files consisting of a single instrument would work.")
|
122 |
st.markdown("The sequence of notes and chords from the MIDI files are broken down into increments of 100, which are used to predict the next note or chord.")
|
123 |
st.markdown("#### Model")
|
124 |
+
st.markdown("For this project we will use a network consisting of three LSTM layers, three Dropout layers, two Dense layers and two activation layers.")
|
125 |
left_col, cent_col, right_col = st.columns(3)
|
126 |
with cent_col:
|
127 |
st.image(lstm, caption = 'Music Generation Model', width = 250)
|