We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I believe the docs for a custom class level entry point are missing the base-class BaseHandler. If i'm mistaken, please close this issue.
BaseHandler
Link: https://github.com/pytorch/serve/blob/master/docs/custom_service.md#custom-handler-with-class-level-entry-point
Replace class ModelHandler(object): with class ModelHandler(BaseHandler):
class ModelHandler(object):
class ModelHandler(BaseHandler):
Status