Last active
January 29, 2020 12:37
-
-
Save cosmic-cortex/cf7a7fcc7fdbe62209bcef874bb12317 to your computer and use it in GitHub Desktop.
Skeleton of the predict endpoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@app.post("/predict", response_model=PredictResponse) | |
def predict(input: PredictRequest): | |
return PredictResponse(data=[0.0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment