hmb's picture
hmb HF Staff
Upload folder using huggingface_hub
a296c4d
raw
history blame contribute delete
214 Bytes
import gradio as gr
from gradio_shinymodel3d import ShinyModel3D
import os
model_file = os.path.join(os.path.dirname(__file__), "Duck.glb")
with gr.Blocks() as demo:
ShinyModel3D(model_file)
demo.launch()