lb-vi

Results 3 comments of lb-vi

@xadupre I tried your numpy API for ONNX and ran into this issue when using it together with the TransformedTargetRegressor as victornoel showed above. > MissingShapeCalculator: Unable to find a...

Thank you for the directions to look into. I did not yet implement a converter only the function and inverse function as described in your example (http://www.xavierdupre.fr/app/mlprodict/helpsphinx/blog/2021/2021-05-05_numpyapionnx1.html). I probably misunderstood...

Yes, I use a TransformedTargetRegressor and log(x+1) + inverse function: ``` @onnxnumpy_default def onnx_log_1(x: NDArray[Any, np.float32]) -> NDArray[(None, None), np.float32]: return npnx.log1p(x) @onnxnumpy_default def onnx_exp_1(x: NDArray[Any, np.float32]) -> NDArray[(None, None),...