ahallermed

Results 6 comments of ahallermed

@JonTriebenbach I had the same issue with tensorflow==2.7.0 and tf2onnx==1.9.2. A simple upgrade from to tf2onnx==1.9.3 solved the issue, that lstms are shown as loops. At least for me.

Short reminder for @Qwlouse . Can you push the new version to PyPI? I am very keen on using the new version. Thank in advance!

Gets fixed by this pull request #1961 and can be closed after it is merged.

I came across the same issue. The converter expects no feature names or one that are "0", "1", ... or "f0", "f1", "f3". You can work around this issue by...

Here is a minimal example with which I can reproduce this error (xgboost version 1.7.5): ```python # %% from onnxmltools import convert_xgboost from skl2onnx.common.data_types import FloatTensorType from xgboost.sklearn import XGBClassifier...