LovnishVerma commited on
Commit
48c2fae
1 Parent(s): 0710e36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
  # Load the fine-tuned Llama 2 model
4
- model = gr.load("models/mlabonne/llama-2-7b-guanaco")
5
 
6
  # Create a Gradio interface
7
  iface = gr.Interface(
@@ -9,7 +9,6 @@ iface = gr.Interface(
9
  inputs="text", # Input is text
10
  outputs="text", # Output is also text
11
  live=True, # Enable live updates without button click
12
- interpretation="default", # Use default interpretation for text outputs
13
  theme="compact", # Use a compact theme for the interface
14
  description="Fine-tuned Llama 2: Enter a prompt to get a model-generated response."
15
  )
 
1
  import gradio as gr
2
 
3
  # Load the fine-tuned Llama 2 model
4
+ model = "models/mlabonne/llama-2-7b-guanaco"
5
 
6
  # Create a Gradio interface
7
  iface = gr.Interface(
 
9
  inputs="text", # Input is text
10
  outputs="text", # Output is also text
11
  live=True, # Enable live updates without button click
 
12
  theme="compact", # Use a compact theme for the interface
13
  description="Fine-tuned Llama 2: Enter a prompt to get a model-generated response."
14
  )