Agrimr commited on
Commit
f86a008
·
1 Parent(s): 7bb8c25
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
1
  import gradio as gr
2
 
3
- gr.load("models/ahmedrachid/FinancialBERT-Sentiment-Analysis").launch()
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ # Load the model
4
+ model = gr.load("models/ahmedrachid/FinancialBERT-Sentiment-Analysis")
5
+
6
+ # Launch the Gradio interface with share=True
7
+ gr.launch(model, share=True)