pmkhanh7890's picture
revise demo
b489aea
raw
history blame
261 Bytes
import gradio as gr
path = "T://Projects//prj-nict-ai-content-detection//example_image_input.jpg"
html_code = input_image = f"""<img src="file://{path}" width="200" height="150">"""
with gr.Blocks() as demo:
gr.HTML(html_code)
demo.launch(share=False)