From 3939afb3c3edd02e5479b21acd690c2e324a6c9c Mon Sep 17 00:00:00 2001 From: Guenther Schmuelling Date: Tue, 31 Mar 2020 12:11:51 -0700 Subject: [PATCH] PlaceholderWithDefault needs IR4: --- tf2onnx/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf2onnx/constants.py b/tf2onnx/constants.py index d89a0f069..3993980d7 100644 --- a/tf2onnx/constants.py +++ b/tf2onnx/constants.py @@ -40,5 +40,5 @@ # Mapping opset to IR version. OPSET_TO_IR_VERSION = { - 1: 3, 2: 3, 3: 3, 4: 3, 5: 3, 6: 3, 7: 3, 8: 4, 9: 4, 10: 5, 11: 6, 12: 7 + 1: 3, 2: 3, 3: 3, 4: 3, 5: 3, 6: 3, 7: 4, 8: 4, 9: 4, 10: 5, 11: 6, 12: 7 }