File size: 315 Bytes
899a11b
b8dda2d
899a11b
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr
from gradio_molecule3d import Molecule3D

# prediction routine
def predict(x):
    return "Model prediction"

with gr.Blocks() as demo:
    inp = Molecule3D(label="Molecule3D")
    btn = gr.Button("Run")
    out = gr.HTML("")
    btn.click(fn=predict, inputs=[inp], outputs=[out])

demo.launch()