tlodato commited on
Commit
081af0c
·
1 Parent(s): e0f10e4
Files changed (1) hide show
  1. app.py +14 -9
app.py CHANGED
@@ -2,18 +2,23 @@
2
 
3
  import gradio as gr
4
  from gradio_client import Client
 
 
5
 
6
  client = Client("https://adept-fuyu-8b-demo.hf.space/--replicas/9kcqv/")
7
 
8
- filepath = "https://raw.githubusercontent.com/gradio-app/gradio/main/test/test_files/bus.png"
9
- question = "what color is the bus?"
10
-
11
- def vqa(image:str, prompt:str):
12
- result = client.predict(image,prompt,fn_index=3)
13
- print("result: "+result)
14
- print("result lstrip"+result.lstrip())
15
  return result
16
 
 
 
 
 
 
 
 
 
17
  css = """
18
  #mkd {
19
  height: 500px;
@@ -28,8 +33,8 @@ with gr.Blocks(css=css) as demo:
28
  vqa_output = gr.Textbox(label="Output")
29
  vqa_btn = gr.Button("Answer Visual Question")
30
  vqa_btn.click(
31
- fn=vqa,
32
- inputs = [image_input,text_input],
33
  outputs = vqa_output
34
  )
35
 
 
2
 
3
  import gradio as gr
4
  from gradio_client import Client
5
+ from PIL import Image
6
+ import tempfile
7
 
8
  client = Client("https://adept-fuyu-8b-demo.hf.space/--replicas/9kcqv/")
9
 
10
+ def vqa(image_path:str, prompt:str):
11
+ result = client.predict(image_path,prompt,fn_index=3)
 
 
 
 
 
12
  return result
13
 
14
+ def variants(image_path:str,prompt:str,rot:int):
15
+ with tempfile.NamedTemporaryFile(mode="wb") as img:
16
+ img = Image.open(image_path,mode="r").rotate(int).save("temp.jpg")
17
+ vqa(img,prompt)
18
+
19
+
20
+
21
+
22
  css = """
23
  #mkd {
24
  height: 500px;
 
33
  vqa_output = gr.Textbox(label="Output")
34
  vqa_btn = gr.Button("Answer Visual Question")
35
  vqa_btn.click(
36
+ fn=variants,
37
+ inputs = [image_input,text_input,90],
38
  outputs = vqa_output
39
  )
40