Skip to content

Releases: PINTO0309/onnx2tf

1.19.14

15 Apr 09:50
8f0610c
Compare
Choose a tag to compare
  • Celu
    • Fixed a bug that caused very few elements to diverge to Nan, resulting in inconsistent output.
      onnx_tensor[0, 3, 1, 26]
      97.723495
      
      tf_transposed_tensor[0, 3, 1, 26]
      nan
      
    • poc.onnx.zip

TensorFlow operator combinations were reviewed.

onnx2tf -i poc.onnx -cotof

image

image

What's Changed

  • pip env setup guide: Fix onnx package version & add tensorflow and protobuf by @Boulaouaney in #601
  • Bug fix for Celu, onnxruntime==1.17.1 by @PINTO0309 in #603

New Contributors

Full Changelog: 1.19.13...1.19.14

1.19.13

05 Apr 09:35
Compare
Choose a tag to compare
  • Gather
    ONNX Gather changes output shape by removing the singled out dimension. When converting to TF using strided_slice, the extra dimension is kept.

    ONNX: [1,50,768] -> Gather (index=0) -> [1,768]
    TF: [1,50,768] -> StridedSlice (... ) -> [1,1,768]

    image

What's Changed

New Contributors

Full Changelog: 1.19.12...1.19.13

1.19.12

30 Mar 08:45
3bbfa43
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.19.11...1.19.12

1.19.11

31 Jan 13:08
edd6c25
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.19.10...1.19.11

1.19.10

23 Jan 01:40
22ac636
Compare
Choose a tag to compare
  • Mul, Div, Sub, or Mod
    • Modified to suppress broadcast when Gemm is immediately followed by a scalar Mul, Div, Sub, or Mod.
    • This is a very specific workaround for the special specifications of NNAPI.
    • Address the issue of NNAPI not allowing multi-dimensional bias.
    • The problem is not reproducible for variable batch sizes.
    • The problem reproduces only when changing to a fixed batch size.
  • pre_explicit_broadcast should not expend scalar tensor #573

What's Changed

  • Modified to suppress broadcast when Gemm is immediately followed by a scalar Mul, Div, Sub, or Mod. by @PINTO0309 in #577

Full Changelog: 1.19.9...1.19.10

1.19.9

22 Jan 13:58
3e12783
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.19.8...1.19.9

1.19.8

19 Jan 06:42
6d0c3d8
Compare
Choose a tag to compare

What's Changed

  • Fixed Abort bug when converting models with --optimization_for_gpu_delegate. by @PINTO0309 in #574

Full Changelog: 1.19.7...1.19.8

1.19.7

11 Jan 15:46
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.19.6...1.19.7

1.19.6

09 Jan 10:13
bf494de
Compare
Choose a tag to compare
  • Support for STFT (Partially supported)
    1. add onnx2tf/onnx2tf/ops/STFT.py. This is the main implementation of the STFT op.
    2. provide example STFT onnx model
image

What's Changed

New Contributors

Full Changelog: 1.19.5...1.19.6

1.19.5

06 Jan 12:22
9dc3912
Compare
Choose a tag to compare

What's Changed

  • Implement workaround for cases where the input tensor contains multiple undefined dimensions Resize by @PINTO0309 in #564

Full Changelog: 1.19.4...1.19.5