codewithdark commited on
Commit
ce0ff17
·
verified ·
1 Parent(s): 0f5fdaf

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -1,9 +1,11 @@
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()
 
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()