minnehwg commited on
Commit
a6186d7
·
verified ·
1 Parent(s): e2a2f0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -1,6 +1,13 @@
1
  import gradio as gr
2
  from util import update
3
 
 
 
 
 
 
 
 
4
  with gr.Blocks() as demo:
5
  gr.Markdown("Start typing below and then click **Run** to see the output.")
6
  with gr.Row():
 
1
  import gradio as gr
2
  from util import update
3
 
4
+ def get_model(cp):
5
+ checkpoint = cp
6
+ tokenizer, model = load_model(checkpoint)
7
+ return tokenizer, model
8
+
9
+ tokenizer, model = get_model(cp_aug)
10
+
11
  with gr.Blocks() as demo:
12
  gr.Markdown("Start typing below and then click **Run** to see the output.")
13
  with gr.Row():