David Fan
David Fan
Can you provide a real example for us to debug (you can change or simplify your original model)?
The error occurs in `load_model` which is keras API, seems not related to keras2onnx issue.
Can you provide the model for us to debug?
What do you mean by "it`s work"? This model summary cannot help debug, do you have keras model files? .h5 file?
Thanks for raising this. This issue is of two parts. keras->onnx, this is the scope of keras2onnx. Is the onnx model itself working on CPU? If yes, then onnx->tensorRT, this...
Is it a tf keras model? Can you share a model (or script) which contains Conv1d layer with causal padding? Just provide a very simple one so we can do...
I did a unit test with PR [here](https://github.com/onnx/keras-onnx/pull/462), and it passed for latest tensorflow (tf.keras python3.7 case). The build is [here](https://dev.azure.com/onnxmltools/ketone/_build/results?buildId=11791&view=results). (There is error for python 3.5 that is because...
Did you see my reply above? My unit test shows the inference result of the given model is the same. It is weird when you say "quite different", are you...
Tried `keras.models.load_model`, but the attached keras model fails to load with following error: `args = (,) kwargs = {'batch_input_shape': [None, 12, 11], 'dtype': 'float32', 'name': 'input_4', 'ragged': False, ...}, object_name...
keras2onnx works for both tf 1 and 2. For tf2, when you load the model, it loads as tf.keras model by default. Is your model a keras one or tf.keras...