I am looking for an easy way to turn my local Jupyter notebooks into a deployable model without having to write a lot of code or configuration. Thank you.

  • Medium_Ad_3555OPB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    I agree that ONNX would be the right solution if you need to serve 100M inference requests. However, my code is not for that case; most likely it will serve up only 100K requests and will be either thrown away or completely re-engineered for the next iteration of requirements. Additionally, it’s not just about the binary model file; there is pre-processing involved, data needs to be pulled from an internal API, the inference needs to be run, and finally, the results need to be post-processed.

    I know how to convert it to fast API, but was curious if there is any solution where I can parameterize and sever an inference cell code with low effort.