Spaces:
Runtime error
Runtime error
Commit
·
c37fa6e
1
Parent(s):
387f0be
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import pickle
|
| 2 |
-
import gradio
|
| 3 |
|
| 4 |
-
description = "input a single number or numbers
|
| 5 |
with open('final_model.pkl','rb') as g:
|
| 6 |
model = pickle.load(g)
|
| 7 |
def grad(value):
|
|
|
|
| 1 |
import pickle
|
| 2 |
+
import gradio as gr
|
| 3 |
|
| 4 |
+
description = "input a single number or numbers separated with comma"
|
| 5 |
with open('final_model.pkl','rb') as g:
|
| 6 |
model = pickle.load(g)
|
| 7 |
def grad(value):
|