Skip to content

Releases: PINTO0309/onnx2tf

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

0.0.23

12 Oct 03:01
Compare
Choose a tag to compare
  • GatherElements, IsInf, IsNaN, LRN, OneHot, LogSoftmax

Full Changelog: 0.0.22...0.0.23

0.0.22

11 Oct 13:05
Compare
Choose a tag to compare
  • Improvement of generation log of TF op

image

Full Changelog: 0.0.21...0.0.22

0.0.21

10 Oct 16:18
Compare
Choose a tag to compare
  • MeanVarianceNormalization

Full Changelog: 0.0.20...0.0.21

0.0.20

10 Oct 15:49
Compare
Choose a tag to compare
  • DepthToSpace, SpaceToDepth, Det

Full Changelog: 0.0.19...0.0.20

0.0.19

10 Oct 14:49
Compare
Choose a tag to compare
  • Conv1D_Transpose, Conv2D_Transpose, Conv3D_Transpose

Full Changelog: 0.0.18...0.0.19

0.0.18

08 Oct 14:27
Compare
Choose a tag to compare
  • Support for channel_padding
  • Bug fixes
  • Disable dynamic batch NonMaxSuppression
    Full Changelog: 0.0.17...0.0.18