Update app.py
Browse files
app.py
CHANGED
@@ -736,5 +736,6 @@ with gr.Blocks(theme=custom_theme, css=css) as demo:
|
|
736 |
do_captioning.click(fn=run_captioning, inputs=[images, concept_sentence] + caption_list, outputs=caption_list)
|
737 |
|
738 |
|
|
|
739 |
if __name__ == "__main__":
|
740 |
-
demo.launch(server_name="0.0.0.0", server_port=7860, auth=("gini", "pick"), show_error=True)
|
|
|
736 |
do_captioning.click(fn=run_captioning, inputs=[images, concept_sentence] + caption_list, outputs=caption_list)
|
737 |
|
738 |
|
739 |
+
# 마지막 부분 수정 - share=True 추가
|
740 |
if __name__ == "__main__":
|
741 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, auth=("gini", "pick"), show_error=True, share=True)
|