lllchenlll commited on
Commit
44d5661
1 Parent(s): bf044e7

Add application file

Browse files
Files changed (2) hide show
  1. app.py +0 -1
  2. requirements.txt +2 -0
app.py CHANGED
@@ -16,7 +16,6 @@ with gr.Blocks() as demo:
16
 
17
  text_output = gr.Textbox(value='', label='Output')
18
 
19
-
20
  btn = gr.Button(value='Submit')
21
  btn.click(process, inputs=[text_api, text_caption, text_category, text_asr, text_ocr], outputs=[text_output])
22
 
 
16
 
17
  text_output = gr.Textbox(value='', label='Output')
18
 
 
19
  btn = gr.Button(value='Submit')
20
  btn.click(process, inputs=[text_api, text_caption, text_category, text_asr, text_ocr], outputs=[text_output])
21
 
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio==3.24.1
2
+ sentence-transformers==2.2.2