JustKiddo commited on
Commit
e5ef9c4
·
verified ·
1 Parent(s): e6dda88

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -20,9 +20,9 @@ def sepia(input_img):
20
  ## required positional arguments: 'inputs' and 'outputs'
21
  def process_image(image):
22
  # Convert the input image to the format expected by the model
23
- input_img = np.array(input_img)
24
  # Run the image through the model
25
- result = client(inputs=input_img)
26
  # Extract the text from the result
27
  text = result['text']
28
  return text
@@ -43,7 +43,7 @@ with gr.Blocks() as generated_output:
43
  with gr.Row():
44
  gr.Interface(
45
  fn=process_image,
46
- inputs=gr.Image(type="numpy"),
47
  outputs=gr.Textbox(label="Recognized Text"),
48
  show_progress="full")
49
  #with gr.Blocks() as generated_output:
 
20
  ## required positional arguments: 'inputs' and 'outputs'
21
  def process_image(image):
22
  # Convert the input image to the format expected by the model
23
+ output_img = np.array(output_img)
24
  # Run the image through the model
25
+ result = client(inputs=output_img)
26
  # Extract the text from the result
27
  text = result['text']
28
  return text
 
43
  with gr.Row():
44
  gr.Interface(
45
  fn=process_image,
46
+ inputs=output_img,
47
  outputs=gr.Textbox(label="Recognized Text"),
48
  show_progress="full")
49
  #with gr.Blocks() as generated_output: