lucas-w commited on
Commit
4c0deef
1 Parent(s): f1d3f13

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,3 +1,10 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/dmis-lab/biobert-large-cased-v1.1-squad").launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ # Define the examples
4
+ examples = [
5
+ "I earned $20 today, what do I do with it?",
6
+ ]
7
+
8
+ # Load the Gradio interface
9
+ gr.Interface.load("dmis-lab/biobert-large-cased-v1.1-squad",
10
+ examples=examples).launch()