MolCRAFT_demo / app.py
Atomu2014's picture
try gradio
e7fc735
raw
history blame contribute delete
368 Bytes
# from fastapi import FastAPI
# app = FastAPI()
# @app.get("/")
# def greet_json():
# return {"Hello": "World!"}
import gradio as gr
from gradio_molecule3d import Molecule3D
with gr.Blocks() as demo:
gr.Markdown("# MolCRAFT: Structure-Based Drug Design in Continuous Parameter Space [ICML 2024]")
if __name__ == '__main__':
demo.launch(share=True)