Similar to @javan-peymanfard and @hmadali-shafiee, I ran into this issue when loading the model in an API. I was using FastAPI with uvicorn. To fix the issue I just set the API function definitions to async
similar to this:
@app.post('/endpoint_name')async def endpoint_function(): # Do stuff here, including possibly (re)loading the model