dennisvdang commited on
Commit
5543ce2
1 Parent(s): 7e4c449

Added cover photo

Browse files
Files changed (2) hide show
  1. app.py +2 -0
  2. images/cover.jpg +0 -0
app.py CHANGED
@@ -392,6 +392,8 @@ def plot_predictions(audio_features, predictions):
392
 
393
 
394
  def main():
 
 
395
  st.title("Chorus Finder")
396
  st.write("This app uses a pre-trained convolutional recurrent neural network to predict chorus locations in music. To learn more about this project, visit [github.com/dennisvdang/chorus-detection](https://github.com/dennisvdang/chorus-detection).")
397
  st.write("Enter a YouTube song URL to find the chorus!")
 
392
 
393
 
394
  def main():
395
+ cover_image = "images/cover.jpg"
396
+ st.image(cover_image, use_column_width=True)
397
  st.title("Chorus Finder")
398
  st.write("This app uses a pre-trained convolutional recurrent neural network to predict chorus locations in music. To learn more about this project, visit [github.com/dennisvdang/chorus-detection](https://github.com/dennisvdang/chorus-detection).")
399
  st.write("Enter a YouTube song URL to find the chorus!")
images/cover.jpg ADDED