Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
codewithdark
/
Gemma_Finetuner
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
codewithdark
commited on
Mar 18
Commit
0f5fdaf
·
verified
·
1 Parent(s):
29fb5e3
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,9 @@
1
+
from Gemma_Finetune.main import GemmaUI
2
+
3
+
def main():
4
+
ui = GemmaUI()
5
+
app = ui.create_ui()
6
+
app.launch(share=True)
7
+
8
+
if __name__ == '__main__':
9
+
main()