Skip to content

Releases: PINTO0309/onnx2tf

0.0.33

15 Oct 01:53
Compare
Choose a tag to compare
  • Pad
    • Corresponds to the case where the name attribute is blank
  • Add, Div, Sub, Mul
    • Supports channel conversion
  • Reshape
    • Added the ability to apply Transpose to the tensor after Reshape
      Transpose is applied to the tensor after the Reshape operation with the perm specified as post-processing.
      {
        "format_version": 1,
        "operations": [
          {
            "op_name": "Reshape_25",
            "param_target": "outputs",
            "param_name": "onnx::InstanceNormalization_270",
            "post_process_transpose_perm": [0,2,1] # Extrapolate 3D Transpose after Reshape
          },
          {
            "op_name": "Reshape_30",
            "param_target": "outputs",
            "param_name": "onnx::Mul_275",
            "post_process_transpose_perm": [0,2,3,1] # Extrapolate 4D Transpose after Reshape
          }
        ]
      }
    • Corresponds to zero value of shape
      • shape = [0,5,-1]
  • InstanceNormalization
    • Bias add bug fixes

Full Changelog: 0.0.32...0.0.33

0.0.32

14 Oct 11:05
Compare
Choose a tag to compare
  • DynamicQuantizeLinear, Shrink

Full Changelog: 0.0.31...0.0.32

0.0.31

14 Oct 10:06
Compare
Choose a tag to compare
  • Support for --replace_neg_to_pseudo_neg

Full Changelog: 0.0.30...0.0.31

0.0.30

14 Oct 09:25
Compare
Choose a tag to compare
  • Support for 5D tensor Resize
  • Bug fixes ConvTranspose + Bias Add

Full Changelog: 0.0.29...0.0.30

0.0.29

14 Oct 08:39
Compare
Choose a tag to compare
  • Bug fixes Conv + Bias Add

Full Changelog: 0.0.28...0.0.29

0.0.28

14 Oct 04:22
Compare
Choose a tag to compare
  • Automatic execution of onnxsim
  • Support for pseudo-GatherND

Full Changelog: 0.0.27...0.0.28

0.0.27

13 Oct 13:17
Compare
Choose a tag to compare
  • Bug fixes for InstanceNormalization
  • GridSample (pseudo-GridSample)
    • align_corners=1 only
    • mode='bilinear' only
    • padding_mode='zeros' only

Full Changelog: 0.0.26...0.0.27

0.0.26

13 Oct 09:44
Compare
Choose a tag to compare
  • Parameter replacement. Div, Gemm, Mul, Reshape, Resize, Sub, Transpose
  • Support for --param_replacement_file option
  • e.g. param_replacement.json
{
  "format_version": 1,
  "operations": [
    {
      "op_name": "StatefulPartitionedCall/Tile_4",
      "param_target": "inputs", # attributes or inputs
      "param_name": "const_fold_opt__677",
      "values": [1,1,17] # Disable parameter transposition or overwrite parameters
    },
    {
      "op_name": "StatefulPartitionedCall/Sum_3",
      "param_target": "attributes", # attributes or inputs
      "param_name": "axes",
      "values": [2] # Disable parameter transposition or overwrite parameters
    },
    {
      "op_name": "Resize__697",
      "param_target": "inputs",
      "param_name": "Concat__696:0",
      "values": [26,26] # Replacement of unk__x (Resize OP, sizes height/width parameter)
    }
  ]
}

Full Changelog: 0.0.25...0.0.26

0.0.25

12 Oct 14:37
Compare
Choose a tag to compare
  • Support for --output_signaturedefs option
  • [WIP] Parameter replacement

Full Changelog: 0.0.24...0.0.25

0.0.24

12 Oct 07:20
Compare
Choose a tag to compare
  • get attr minvalue, maxvalue, opset=6 #2

Full Changelog: 0.0.23...0.0.24