Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ from webUI.natural_language_guided_4.sound2sound_with_text import get_sound2soun
|
|
25 |
from webUI.natural_language_guided_4.inpaint_with_text import get_inpaint_with_text_module
|
26 |
# from webUI.natural_language_guided_4.build_instrument import get_build_instrument_module
|
27 |
from webUI.natural_language_guided_4.note2music import get_arrangement_module
|
28 |
-
|
29 |
|
30 |
|
31 |
|
@@ -90,11 +90,10 @@ with gr.Blocks(theme=gr.themes.Soft(), mode="dark") as demo:
|
|
90 |
get_inpaint_with_text_module(gradioWebUI, inpaint_state, virtual_instruments_state)
|
91 |
# get_build_instrument_module(gradioWebUI, virtual_instruments_state)
|
92 |
get_arrangement_module(gradioWebUI, virtual_instruments_state, midi_files_state)
|
93 |
-
|
94 |
# get_instruments_module(gradioWebUI, virtual_instruments_state)
|
95 |
|
96 |
demo.launch(debug=True, share=True)
|
97 |
-
# demo.launch(debug=True, share=False)
|
98 |
|
99 |
|
100 |
|
|
|
25 |
from webUI.natural_language_guided_4.inpaint_with_text import get_inpaint_with_text_module
|
26 |
# from webUI.natural_language_guided_4.build_instrument import get_build_instrument_module
|
27 |
from webUI.natural_language_guided_4.note2music import get_arrangement_module
|
28 |
+
from webUI.natural_language_guided_4.README import get_readme_module
|
29 |
|
30 |
|
31 |
|
|
|
90 |
get_inpaint_with_text_module(gradioWebUI, inpaint_state, virtual_instruments_state)
|
91 |
# get_build_instrument_module(gradioWebUI, virtual_instruments_state)
|
92 |
get_arrangement_module(gradioWebUI, virtual_instruments_state, midi_files_state)
|
93 |
+
get_readme_module()
|
94 |
# get_instruments_module(gradioWebUI, virtual_instruments_state)
|
95 |
|
96 |
demo.launch(debug=True, share=True)
|
|
|
97 |
|
98 |
|
99 |
|