Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
-
from Gemma_Finetune
|
|
|
2 |
|
3 |
def main():
|
4 |
ui = GemmaUI()
|
5 |
app = ui.create_ui()
|
6 |
app.launch(share=True)
|
7 |
|
|
|
8 |
if __name__ == '__main__':
|
9 |
main()
|
|
|
1 |
+
from Gemma_Finetune import GemmaUI
|
2 |
+
|
3 |
|
4 |
def main():
|
5 |
ui = GemmaUI()
|
6 |
app = ui.create_ui()
|
7 |
app.launch(share=True)
|
8 |
|
9 |
+
|
10 |
if __name__ == '__main__':
|
11 |
main()
|