Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,19 +4,6 @@ import os
|
|
4 |
import json
|
5 |
|
6 |
|
7 |
-
def generate_answer_pix2struct_base(image_path, question):
|
8 |
-
try:
|
9 |
-
client = Client("https://qtoino-pix2struct.hf.space/")
|
10 |
-
return client.predict(
|
11 |
-
image_path,
|
12 |
-
question,
|
13 |
-
fn_index=1
|
14 |
-
)
|
15 |
-
except Exception:
|
16 |
-
gr.Warning("The Pix2Struct Large Space is currently unavailable. Please try again later.")
|
17 |
-
return ""
|
18 |
-
|
19 |
-
|
20 |
def generate_answer(image_path, question, model_name, space_id):
|
21 |
try:
|
22 |
client = Client(f"https://{model_name}.hf.space/")
|
@@ -36,7 +23,7 @@ def generate_answer(image_path, question, model_name, space_id):
|
|
36 |
|
37 |
|
38 |
def generate_answers(image_path, question):
|
39 |
-
answer_p2s_base =
|
40 |
|
41 |
answer_p2s_large = generate_answer(image_path, question, model_name = "akdeniz27-pix2struct-DocVQA", space_id = "Pix2Struct Large")
|
42 |
|
|
|
4 |
import json
|
5 |
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
def generate_answer(image_path, question, model_name, space_id):
|
8 |
try:
|
9 |
client = Client(f"https://{model_name}.hf.space/")
|
|
|
23 |
|
24 |
|
25 |
def generate_answers(image_path, question):
|
26 |
+
answer_p2s_base = generate_answer(image_path, question, model_name = "qtoino-pix2struct", space_id = "Pix2Struct")
|
27 |
|
28 |
answer_p2s_large = generate_answer(image_path, question, model_name = "akdeniz27-pix2struct-DocVQA", space_id = "Pix2Struct Large")
|
29 |
|