tjl223 commited on
Commit
0e2132d
1 Parent(s): 0d812a0

testing input

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -7,7 +7,14 @@ artist_names_list = list(artists_df["name"])
7
 
8
 
9
  artist_name_input = st.selectbox("Artist", artist_names_list)
10
- st.write(artist_name_input)
 
 
 
 
 
 
 
11
 
12
  ensemble_model = ArtistCoherencyModel.from_pretrained(
13
  "tjl223/artist-coherency-ensemble"
 
7
 
8
 
9
  artist_name_input = st.selectbox("Artist", artist_names_list)
10
+ song_title = st.text_input("Song Title")
11
+ song_description = st.text_area("Song Description")
12
+ submit_button = st.button("Submit")
13
+
14
+ if submit_button:
15
+ st.write(
16
+ f"[Song Title] {song_title}\n[Song Artist] {artist_name_input}\n[Song Description] {song_description}"
17
+ )
18
 
19
  ensemble_model = ArtistCoherencyModel.from_pretrained(
20
  "tjl223/artist-coherency-ensemble"