I try to implement self-defined networks which involves comparing outputs to some thresholds. But it raises NotImplementedError: The following operators are not implemented: ['aten::gt', 'aten::lt', 'aten::ge']
I attempted to add functions to support such operators, like
But I don’t know what are the elements in inputs of aten::lt or aten::gt stand for. And I wonder if there are exsiting functions in _op supported lt, gt, le, ge operations. Could you give some hints. Thanks.