Spaces:
Build error
Build error
File size: 368 Bytes
e7fc735 1a9023e e7fc735 1a9023e e7fc735 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# 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)
|