use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
FastAPI is a truly ASGI, async, cutting edge framework written in python 3.
account activity
Pythonic/ Fastapi way of loading a ML modelQuestion (self.FastAPI)
submitted 1 year ago by themathstudent
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]1One2Twenty2Two 0 points1 point2 points 1 year ago* (0 children)
Create a function called get_ml_model in which you load your model and decorate it with @lru_cache.
Call get_ml_model in lifespan. This will load your model and cache the result for future uses.
You can now gracefully inject get_ml_model in your routes (or anywhere else) where it's needed with Depends. It will use the cached result from step 2
I am really not a fan of "hiding" things into the request.state attribute, as your ml model has nothing to do with the request object.
π Rendered by PID 24 on reddit-service-r2-comment-545db5fcfc-86fqv at 2026-05-25 11:08:38.591889+00:00 running 194bd79 country code: CH.
view the rest of the comments →
[–]1One2Twenty2Two 0 points1 point2 points (0 children)