Cropinky commited on
Commit
963e69f
·
1 Parent(s): 4a01ccd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ text_generation = pipeline("text-generation", model=model, tokenizer=tokenizer)
24
  title.title("Rap lyrics generator")
25
  #artist = st.text_input("Enter the artist", "Wu-Tang Clan")
26
  list_of_rappers = load_rappers()
27
- artist = st.radio("Choose your rapper", tuple(list_of_rappers))
28
  song_name = st.text_input("Enter the desired song name", "Shaolin")
29
 
30
 
 
24
  title.title("Rap lyrics generator")
25
  #artist = st.text_input("Enter the artist", "Wu-Tang Clan")
26
  list_of_rappers = load_rappers()
27
+ artist = st.selectbox("Choose your rapper", tuple(list_of_rappers))
28
  song_name = st.text_input("Enter the desired song name", "Shaolin")
29
 
30