From 7c1c97d2d8d0a99c752d43f95d92618b62b1f015 Mon Sep 17 00:00:00 2001 From: Alexander Pivovarov Date: Mon, 10 Jun 2019 21:26:15 -0700 Subject: [PATCH] Add LOGISTIC operator to relay tflite frontend (#3313) --- python/tvm/relay/frontend/tflite.py | 18 ++++++++++++++++++ tests/python/frontend/tflite/test_forward.py | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/python/tvm/relay/frontend/tflite.py b/python/tvm/relay/frontend/tflite.py index 3a13473..eb9e742 100644 --- a/python/tvm/relay/frontend/tflite.py +++ b/python/tvm/relay/frontend/tflite.py @@ -67,6 +67,7 @@ class OperatorConverter(object): 'MUL': self.convert_mul, 'FULLY_CONNECTED': self.convert_fully_connected, 'PAD': self.convert_pad, + 'LOGISTIC': self.convert_logistic, } def check_unsupported_ops(self): @@ -218,6 +219,23 @@ class OperatorConverter(object): return out + def convert_logistic(self, op): + """Convert TFLite LOGISTIC""" + try: + from tflite.Operator import Operator + except ImportError: + raise ImportError("The tflite package must be installed") + + assert isinstance(op, Operator) + input_tensors = self.get_input_tensors(op) + assert len(input_tensors) == 1, "input tensors length should be 1" + + input_tensor = input_tensors[0] + in_expr = self.get_expr(input_tensor.tensor_idx) + + out = _op.sigmoid(in_expr) + return out + def convert_softmax(self, op): """Convert TFLite softmax""" try: diff --git a/tests/python/frontend/tflite/test_forward.py b/tests/python/frontend/tflite/test_forward.py index 7da2b85..5c2e3af 100644 --- a/tests/python/frontend/tflite/test_forward.py +++ b/tests/python/frontend/tflite/test_forward.py @@ -424,6 +424,22 @@ def test_forward_pad(): ####################################################################### +# Logistic +# -------- + +def _test_logistic(data): + """ One iteration of LOGISTIC """ + with tf.Graph().as_default(): + in_data = array_ops.placeholder(shape=data.shape, dtype=data.dtype) + out = math_ops.sigmoid(in_data) + compare_tflite_with_tvm(data, 'Placeholder:0', [in_data], [out]) + +def test_forward_logistic(): + """ LOGISTIC """ + _test_logistic(np.arange(6.0, dtype=np.float32).reshape((1, 6))) + + +####################################################################### # Softmax # ------- @@ -563,6 +579,7 @@ if __name__ == '__main__': # NN test_forward_convolution() + test_forward_logistic() test_forward_pooling() test_forward_softmax() test_forward_fully_connected() -- 2.7.4