mirror of
https://github.com/clearml/clearml-serving
synced 2025-02-07 05:18:12 +00:00
docstring
This commit is contained in:
parent
78a03cc166
commit
d9599ba942
@ -24,12 +24,18 @@ class Preprocess(object):
|
|||||||
# it will also set the internal model_endpoint to reference the specific model endpoint object being served
|
# it will also set the internal model_endpoint to reference the specific model endpoint object being served
|
||||||
self.model_endpoint = None # type: clearml_serving.serving.endpoints.ModelEndpoint
|
self.model_endpoint = None # type: clearml_serving.serving.endpoints.ModelEndpoint
|
||||||
|
|
||||||
def load(self, local_file_name: str) -> Optional[Any]: # noqa
|
def load(self, local_file_name: str) -> Any: # noqa
|
||||||
"""
|
"""
|
||||||
Optional: provide loading method for the model
|
Optional: provide loading method for the model
|
||||||
useful if we need to load a model in a specific way for the prediction engine to work
|
useful if we need to load a model in a specific way for the prediction engine to work
|
||||||
|
|
||||||
|
Notice! When used with specific engines (i.e. not Custom)
|
||||||
|
The returned object will be passed as is to the inference engine,
|
||||||
|
this means it must not be None, otherwise the endpoint will be ignored!
|
||||||
|
|
||||||
:param local_file_name: file name / path to read load the model from
|
:param local_file_name: file name / path to read load the model from
|
||||||
:return: Object that will be called with .predict() method for inference
|
|
||||||
|
:return: Object that will be called with .predict() method for inference.
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user