Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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():
|