Releases: PINTO0309/onnx2tf
Releases · PINTO0309/onnx2tf
0.0.33
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 theReshape
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]
- shape =
- Added the ability to apply Transpose to the tensor after Reshape
InstanceNormalization
- Bias add bug fixes
Full Changelog: 0.0.32...0.0.33
0.0.32
DynamicQuantizeLinear
,Shrink
Full Changelog: 0.0.31...0.0.32
0.0.31
- Support for
--replace_neg_to_pseudo_neg
Full Changelog: 0.0.30...0.0.31
0.0.30
- Support for 5D tensor
Resize
- Bug fixes
ConvTranspose
+Bias Add
Full Changelog: 0.0.29...0.0.30
0.0.29
- Bug fixes
Conv
+Bias Add
Full Changelog: 0.0.28...0.0.29
0.0.28
0.0.27
- Bug fixes for
InstanceNormalization
GridSample (pseudo-GridSample)
align_corners=1
onlymode='bilinear'
onlypadding_mode='zeros'
only
Full Changelog: 0.0.26...0.0.27
0.0.26
- 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
- Support for
--output_signaturedefs
option - [WIP] Parameter replacement
Full Changelog: 0.0.24...0.0.25