a / app.py
bosayama's picture
Update app.py
4557eb6 verified
raw
history blame contribute delete
351 Bytes
import gradio as gr
iface = gr.Interface(
fn=None, # この関数はHTMLファイルによって定義される
live=True,
title="Teachable Machine Image Model",
description="Webcam-based image classification using Teachable Machine",
inputs=[],
outputs=gr.File("gr"), # ディレクトリを指定する
)
iface.launch()