Cropinky commited on
Commit
0c64a9d
·
1 Parent(s): 46460db
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ text_generation = pipeline("text-generation", model=model, tokenizer=tokenizer)
26
  title.title("Rap lyrics generator")
27
  #artist = st.text_input("Enter the artist", "Wu-Tang Clan")
28
  list_of_rappers = load_rappers()
29
- artist = st.selectbox("Choose your rapper", tuple(list_of_rappers))
30
  song_name = st.text_input("Enter the desired song name", "Shaolin")
31
 
32
 
 
26
  title.title("Rap lyrics generator")
27
  #artist = st.text_input("Enter the artist", "Wu-Tang Clan")
28
  list_of_rappers = load_rappers()
29
+ artist = st.selectbox("Choose your rapper", tuple(list_of_rappers), index = 24)
30
  song_name = st.text_input("Enter the desired song name", "Shaolin")
31
 
32