Jagad1234unique commited on
Commit
998b69c
·
verified ·
1 Parent(s): 54a242a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- gr.load("models/Qwen/Qwen2.5-72B").launch()
4
- model = gr.load("model_path") # Load the model only once at startup
5
  def predict(input_data):
6
  return model(input_data)
7
 
 
1
  import gradio as gr
2
 
3
+ model=gr.load("models/Qwen/Qwen2-7B").launch()
4
+ # Load the model only once at startup
5
  def predict(input_data):
6
  return model(input_data)
7