image-cut-off / app.py
hysts's picture
hysts HF Staff
Update
fb348df
raw
history blame contribute delete
160 Bytes
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
gr.Image("cat.jpg", height=500)
if __name__ == "__main__":
demo.queue().launch()