mnist / server.py
carlfeynman's picture
update
9aa266f
raw
history blame
131 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/predict")
async def predict():
return {"prediction": "Hello, World!"}