Spaces:
Sleeping
Sleeping
Commit
Β·
6070bf8
1
Parent(s):
528c312
blurbs transferred
Browse files
app.py
CHANGED
@@ -210,12 +210,38 @@ the fine-tunes hosted on the huggingface hub are provided collectively by the mu
|
|
210 |
[<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" style="vertical-align:middle"> fine-tuning colab notebook by lyra](https://colab.research.google.com/drive/13tbcC3A42KlaUZ21qvUXd25SFLu8WIvb)
|
211 |
"""
|
212 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
# Create the Gradio interface
|
214 |
with gr.Blocks() as iface:
|
215 |
gr.Markdown("# the-micro-slot-machine")
|
216 |
gr.Markdown("two ai's jamming. warning: outputs will be very strange, likely stupid, and possibly rad.")
|
217 |
gr.Markdown("this is an even weirder slot machine than the other one. on the left, you get to generate some state of the art lo-fi jungle drums at incredible speed thanks to aaron's new class of model, and if you want you can have it continue its own output. Then, you can either press the generate_music button to use the first 5 seconds as a prompt, or you can re-upload the audio into the continue_music section to have a fine-tune continue from the end of the jungle drum output, however long and insane it is. think of this as a very weird relay race and you're winning.")
|
218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
with gr.Row():
|
220 |
with gr.Column():
|
221 |
generate_button = gr.Button("Generate Drum Sample")
|
|
|
210 |
[<img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" style="vertical-align:middle"> fine-tuning colab notebook by lyra](https://colab.research.google.com/drive/13tbcC3A42KlaUZ21qvUXd25SFLu8WIvb)
|
211 |
"""
|
212 |
|
213 |
+
# Define the fine-tunes blurb for each model
|
214 |
+
fine_tunes_info = """
|
215 |
+
## thepatch/vanya_ai_dnb_0.1
|
216 |
+
thepatch/vanya_ai_dnb_0.1 was trained by vanya. [vanya's Twitter](https://twitter.com/@veryVANYA) π - it treats almost all input audio as the beginning of a buildup to a dnb drop (can do downtempo well)
|
217 |
+
|
218 |
+
## thepatch/bleeps-medium
|
219 |
+
thepatch/bleeps-medium was trained by kevin and lyra [lyra's Twitter](https://twitter.com/@_lyraaaa_) π - it is a medium model. it's more melodic and ambient sometimes than vanya's, but there's a 50/50 chance it gets real heavy with the edm vibes. It can be amazing at turning your chords into pads, and is a good percussionist.
|
220 |
+
|
221 |
+
## thepatch/budots_remix
|
222 |
+
thepatch/budots_remix was trained by MJ BERSABEph. budots is a dope niche genre from the philippines apparently. this one will often do fascinating, demonic, kinds of vocal chopping. warning: it tends to speed up and slow down tempo, which makes it hard to use in a daw.
|
223 |
+
|
224 |
+
## thepatch/hoenn_lofi
|
225 |
+
thepatch/hoenn_lofi is a large fine-tune by hoenn. [hoenn's Twitter](https://twitter.com/@eschatolocation) π - this model is a large boi, and it shows. even tho it is trained to do lo-fi, its ability to run with your melodies and not ruin them is unparalleled among the fine-tunes so far.
|
226 |
+
|
227 |
+
## thepatch/PhonkV2
|
228 |
+
thepatch/PhonkV2 was trained by MJ BERSABEph. there are multiple versions in the discord.
|
229 |
+
"""
|
230 |
+
|
231 |
# Create the Gradio interface
|
232 |
with gr.Blocks() as iface:
|
233 |
gr.Markdown("# the-micro-slot-machine")
|
234 |
gr.Markdown("two ai's jamming. warning: outputs will be very strange, likely stupid, and possibly rad.")
|
235 |
gr.Markdown("this is an even weirder slot machine than the other one. on the left, you get to generate some state of the art lo-fi jungle drums at incredible speed thanks to aaron's new class of model, and if you want you can have it continue its own output. Then, you can either press the generate_music button to use the first 5 seconds as a prompt, or you can re-upload the audio into the continue_music section to have a fine-tune continue from the end of the jungle drum output, however long and insane it is. think of this as a very weird relay race and you're winning.")
|
236 |
|
237 |
+
with gr.Accordion("more info", open=False):
|
238 |
+
gr.Markdown(musicgen_micro_blurb)
|
239 |
+
gr.Markdown(musicgen_blurb)
|
240 |
+
gr.Markdown(finetunes_blurb)
|
241 |
+
|
242 |
+
with gr.Accordion("fine-tunes info", open=False):
|
243 |
+
gr.Markdown(fine_tunes_info)
|
244 |
+
|
245 |
with gr.Row():
|
246 |
with gr.Column():
|
247 |
generate_button = gr.Button("Generate Drum Sample")
|