Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,8 @@ from ASGModels import ASG
|
|
7 |
ASGAI=ASG(isForm=False)
|
8 |
|
9 |
def greet(name):
|
10 |
-
|
|
|
11 |
|
12 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
13 |
demo.launch()
|
|
|
7 |
ASGAI=ASG(isForm=False)
|
8 |
|
9 |
def greet(name):
|
10 |
+
out=ASGAI.Group.Predict_ALL(name)
|
11 |
+
return str(out)
|
12 |
|
13 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
14 |
demo.launch()
|