We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example code:
import tensorflow as tf X = tf.keras.layers.Input(shape=(60, 78), name='factor') x = X y = tf.keras.layers.GRU(1, return_sequences=True)(x) model = tf.keras.models.Model(inputs=X, outputs=y) import tf2onnx onnx_model_path = '/path/to/model.onnx' model_proto, external_tensor_storage = tf2onnx.convert.from_keras(model, output_path=onnx_model_path) import onnx onnx_model = onnx.load(onnx_model_path) pytorch_model = convert(onnx_model)
Moreover, I'm currently using tensorflow==2.10.0, pytorch==2.5.0 and torchvision==0.20.0.
tensorflow==2.10.0
pytorch==2.5.0
torchvision==0.20.0
The text was updated successfully, but these errors were encountered:
This issue shall be relevant to #136
Sorry, something went wrong.
No branches or pull requests
Example code:
Moreover, I'm currently using
tensorflow==2.10.0
,pytorch==2.5.0
andtorchvision==0.20.0
.The text was updated successfully, but these errors were encountered: