Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: onnx/tensorflow-onnx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.13.0
Choose a base ref
...
head repository: onnx/tensorflow-onnx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.0
Choose a head ref
  • 16 commits
  • 58 files changed
  • 9 contributors

Commits on Nov 8, 2022

  1. Upgrade CI jobs. (#2076)

    * Upgrade CI pipelines to support latest TF and ONNX runtime.
    
    Signed-off-by: Jay Zhang <[email protected]>
    
    * Upgrade CI pipelines to support latest TF and ONNX runtime.
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Nov 8, 2022
    Configuration menu
    Copy the full SHA
    434b4a7 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2023

  1. Update the dtype since latest version of Numpy has removed str. (#2112)

    * Update the dtype since latest version of Numpy has removed str.
    * Set Numpy to a fixed version in CI.
    * Update the protobuf's version in CI.
    * Keep h5py to a lower version for tf 1.15 in CI.
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Feb 15, 2023
    Configuration menu
    Copy the full SHA
    df37192 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2023

  1. Fix Infinite Loop in constant folding (#2119)

    This commit fixes a bug in the function compute_const_folding_using_tf
    where an already-folded StridedSlice node could set the 'update'
    flag to True, causing an infinite loop.
    
    A regression test was also added. The test checks for the infinite loop
    by setting a timeout using the timeout-decorator module from pypi.
    
    Signed-off-by: Ilya Sherstyuk <[email protected]>
    Co-authored-by: Ilya Sherstyuk <[email protected]>
    ilyasher and ilyasher authored Feb 18, 2023
    Configuration menu
    Copy the full SHA
    ff139a4 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2023

  1. Update the way to install onnxconverter-common for nightly job failur…

    …e. (#2122)
    
    * Install onnxconverter-common in the beginning.
    * Set onnxconverter-common to latest version.
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Feb 21, 2023
    Configuration menu
    Copy the full SHA
    82ae7c4 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. Update tf2onnx to support latest tf version. (#2131)

    * Add tflite updates caused by tf 2.11.
    * Fix SIGN op issue for tf2.11.
    * Remove unused attribute of ConvTransposeWithDynamicPads op.
    * Add CI tests for tf 2.11.0.
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Mar 14, 2023
    Configuration menu
    Copy the full SHA
    2781a32 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Configuration menu
    Copy the full SHA
    f7d49c7 View commit details
    Browse the repository at this point in the history
  2. Fix the axis of inserted QDQ for ConvTranspose (#2134)

    The quantization axis of QDQ nodes that are being inserted
    before the kernel weights of all Conv nodes is currently 0.
    This is incorrect; ConvTranspose requires axis=1.
    
    Signed-off-by: Sirej Dua <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    sdua-nv and fatcat-z authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    ce29107 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2023

  1. Adding tf.strings.reduce_join mapping (#2091)

    * Add support to tf.strings.reduce_join
    * Support for ReduceJoin op
    * unit test for reduce_join
    
    Signed-off-by: Salvetti, Francesco <[email protected]>
    f-salvetti authored Mar 16, 2023
    Configuration menu
    Copy the full SHA
    535f74c View commit details
    Browse the repository at this point in the history
  2. A fix for seed attribute in the keras random normal generator (#2126)

    * A fix for seed field in the tf.keras random normal generator. The seed field was not passing to the converted onnx model due to that it exists in seed2 attribute instead of seed and its type is Integer and not float.
    
    ---------
    
    Signed-off-by: inonbe <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    inonbe and fatcat-z authored Mar 16, 2023
    Configuration menu
    Copy the full SHA
    5f918ab View commit details
    Browse the repository at this point in the history
  3. Fix ResizeBilinear and ResizeNearestNeighbor and update related tests (

    …#2130)
    
    1) Fix tf ResizeBilinear and ResizeNearestNeighbor op with align_corners=True or half_pixel_centers=True
    2) Update related tests to make input data include x.5 and add tests for align_corners=True
    
    Signed-off-by: cosine <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    cosineFish and fatcat-z authored Mar 16, 2023
    Configuration menu
    Copy the full SHA
    ec01956 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

  1. Update Resize (opset 11) layer to support scales option when dims are…

    … defined (#2137)
    
    Signed-off-by: Quentin Muller <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    qant-um and fatcat-z authored Mar 18, 2023
    Configuration menu
    Copy the full SHA
    5708e10 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. Fix issue #2102: Set reduction axis of mean to height and width for a…

    …djust_contrast op (#2140)
    
    Signed-off-by: cosine <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    cosineFish and fatcat-z authored Mar 20, 2023
    Configuration menu
    Copy the full SHA
    fa6db66 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. support cumprod op (#2133)

    * support cumprod op
    
    ---------
    
    Signed-off-by: Francesco Salvetti <[email protected]>
    Co-authored-by: Jay Zhang <[email protected]>
    f-salvetti and fatcat-z authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    de939f3 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

  1. Fix code to enable opset 18 and latest onnxruntime. (#2143)

    1. Update Split attributes for opset 18.
    2. Update all Reduce* ops for opset 18.
    3. Update transpose_optimizer for opset 18.
    4. Enable opset 18 in CI tests.
    ---------
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Mar 23, 2023
    Configuration menu
    Copy the full SHA
    25ebdee View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2023

  1. Change the default opset to 15. (#2145)

    * Change the default opset to 15.
    * Update the ONNX version for one CI test.
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Mar 28, 2023
    Configuration menu
    Copy the full SHA
    d071d17 View commit details
    Browse the repository at this point in the history
  2. Prepare updates for release 1.14.0. (#2147)

    * Update version information for a new release 1.14.0.
    
    ---------
    
    Signed-off-by: Jay Zhang <[email protected]>
    fatcat-z authored Mar 28, 2023
    Configuration menu
    Copy the full SHA
    8f8d49a View commit details
    Browse the repository at this point in the history
Loading