Spaces:
Build error
Build error
Commit
·
4b1dab6
1
Parent(s):
7973db0
Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ st.sidebar.markdown(
|
|
53 |
)
|
54 |
|
55 |
|
56 |
-
st.sidebar.header("
|
57 |
num_sequences = st.sidebar.number_input(
|
58 |
"Number of sequences to generate",
|
59 |
min_value=1,
|
@@ -98,11 +98,12 @@ top_k= st.sidebar.number_input(
|
|
98 |
)
|
99 |
|
100 |
caption = (
|
101 |
-
"In HuggingArtists, we can generate lyrics by a specific artist. This was made by fine-tuning a pre-trained HuggingFace Transformer on parsed datasets from Genius."
|
102 |
)
|
103 |
-
st.markdown("
|
104 |
st.markdown(caption)
|
105 |
|
|
|
106 |
artist_name = st.text_input("Artist name:", "Eminem")
|
107 |
start = st.text_input("Beginning of the song:", "But for me to rap like a computer")
|
108 |
|
|
|
53 |
)
|
54 |
|
55 |
|
56 |
+
st.sidebar.header("Generation settings:")
|
57 |
num_sequences = st.sidebar.number_input(
|
58 |
"Number of sequences to generate",
|
59 |
min_value=1,
|
|
|
98 |
)
|
99 |
|
100 |
caption = (
|
101 |
+
"In [HuggingArtists](https://github.com/AlekseyKorshuk/huggingartist), we can generate lyrics by a specific artist. This was made by fine-tuning a pre-trained [HuggingFace Transformer](https://huggingface.co) on parsed datasets from [Genius](https://genius.com)."
|
102 |
)
|
103 |
+
st.markdown("[HuggingArtists](https://github.com/AlekseyKorshuk/huggingartist) - Train a model to generate lyrics 🎵")
|
104 |
st.markdown(caption)
|
105 |
|
106 |
+
st.subheader("Settings:")
|
107 |
artist_name = st.text_input("Artist name:", "Eminem")
|
108 |
start = st.text_input("Beginning of the song:", "But for me to rap like a computer")
|
109 |
|