visakh7843's picture
bug fixed: deployment not able to see app.py
da72176
raw
history blame
No virus
513 Bytes
from music import music_gen
import gradio as gr
keysignature = ["C","G","D","No selection"]
difficulty = ["beginner","intermediate","expert"]
timesignature = ['3/4','4/4','1/8','C|']
interface = gr.Interface(fn = music_gen,
inputs=[gr.Radio(difficulty,label="Difficulty"),
gr.Radio(timesignature,label="Time Signature"),
gr.Dropdown(keysignature,label="Key Signature")],
outputs = ["image","audio"],
title="Sheet Music Generation for Sight-Reading",
description="TO be added")
interface.launch(inline=False)