blob: d0068056eedc7e1aa483c53ac16d2d997d3b418f [file] [log] [blame]
#!/usr/bin/env python
# coding=utf-8
"""Predictor engine action.
Use this module to add the project main code.
"""
from .._compatibility import six
from .._logging import get_logger
from marvin_python_toolbox.engine_base import EngineBasePrediction
__all__ = ['Predictor']
logger = get_logger('predictor')
class Predictor(EngineBasePrediction):
def __init__(self, **kwargs):
super(Predictor, self).__init__(**kwargs)
def execute(self, input_message, params, **kwargs):
return {
"svm_petals": self.marvin_model['svm_petals'].predict(input_message)[0],
"svm_sepals": self.marvin_model['svm_sepals'].predict(input_message)[0]
}