|
| 1 | +# ****************************************************************************** |
| 2 | +# Copyright 2017-2019 Intel Corporation |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | +# ****************************************************************************** |
| 16 | +import logging |
| 17 | +from typing import Union, List, Dict |
| 18 | + |
| 19 | +logger = logging.getLogger(__name__) |
| 20 | + |
| 21 | + |
| 22 | +class ModelAPI: |
| 23 | + """ Base class for a model API implementation |
| 24 | + Implementing classes must provide a default model and/or a path to a model |
| 25 | +
|
| 26 | + Args: |
| 27 | + model_path (str): path to a trained model |
| 28 | +
|
| 29 | + run method must return |
| 30 | + """ |
| 31 | + default_model = None # pre-trained model from library |
| 32 | + |
| 33 | + def __init__(self, model_path: str = None): |
| 34 | + if model_path is not None: |
| 35 | + self.load_model(model_path) |
| 36 | + elif self.default_model is not None: |
| 37 | + # get default model and load it |
| 38 | + # TODO: implement model integration |
| 39 | + raise NotImplementedError |
| 40 | + else: |
| 41 | + logger.error("Not model provided or not pre-trained model configured") |
| 42 | + |
| 43 | + def load_model(self, model_path: str): |
| 44 | + raise NotImplementedError |
| 45 | + |
| 46 | + def run(self, inputs: Union[str, List[str]]) -> Dict: |
| 47 | + raise NotImplementedError |
| 48 | + |
| 49 | + def __call__(self, inputs: Union[str, List[str]]): |
| 50 | + return self.run(inputs) |
0 commit comments