Commit d8132c55 by Alexander Pivovarov Committed by Tianqi Chen

Improve error message for custom tflite operators (#3284)

parent 95ab85d0
......@@ -112,7 +112,7 @@ class OperatorConverter(object):
op_code_str = self.builtin_op_code[op_code_id]
if op_code_id == BuiltinOperator.CUSTOM:
# Custom operator
raise NotImplementedError("Not Support Custom Operator Now")
raise NotImplementedError("Custom operators are currently not supported")
return op_code_str
def get_input_tensors(self, op):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment