niknikita commited on
Commit
f93a735
·
verified ·
1 Parent(s): c7df1da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load(
4
- "huggingface/niknikita/faceid",
5
- ).launch()
6
 
7
  if __name__ == "__main__":
8
- gradio_app.launch()
 
 
1
  import gradio as gr
2
 
3
+ # Load the Hugging Face Space
4
+ gradio_app = gr.Interface.load("huggingface/niknikita/faceid")
 
5
 
6
  if __name__ == "__main__":
7
+ # Launch the app
8
+ gradio_app.launch()