Cropinky commited on
Commit
67f25dd
1 Parent(s): dc7fbd8
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,8 +26,8 @@ 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), index = 24)
30
- song_name = st.text_input("Enter the desired song name", "Shaolin")
31
 
32
 
33
 
 
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 = len(list_of_rappers)-1)
30
+ song_name = st.text_input("Enter the desired song name", "Sadboys")
31
 
32
 
33