Skip to content

Commit fdd66bf

Browse files
authored
Merge pull request #1070 from dkurt:tf_half_pixel_for_nn
Test data for half pixel NN resize from ONNX
2 parents 5caf99f + 41ecffe commit fdd66bf

4 files changed

+7
-1
lines changed
Binary file not shown.
Binary file not shown.

testdata/dnn/onnx/generate_onnx_models.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -2451,7 +2451,7 @@ def save_data_and_tf_function(tf_function, name, input):
24512451
np.save(os.path.join("data", "output_" + name + ".npy"), output)
24522452
cumsum_model = tf2onnx.convert.from_function(
24532453
function=tf_function,
2454-
input_signature=[tf.TensorSpec([], tf.float32)],
2454+
input_signature=[tf.TensorSpec(input.shape, tf.float32)],
24552455
opset=14)[0]
24562456
onnx.save(cumsum_model, os.path.join("models", name + ".onnx"))
24572457

@@ -2977,3 +2977,9 @@ def make_node_with_constant(op_type, constant_value, inputs=None, outputs=None,
29772977
np.save(input_files, input.data)
29782978
output_files = os.path.join("data", "output_" + name)
29792979
np.save(output_files, np.ascontiguousarray(output.data))
2980+
2981+
## tf_half_pixel_for_nn
2982+
@tf.function
2983+
def tf_resize_nearest(x):
2984+
return tf.compat.v1.image.resize_nearest_neighbor(x, size=(5, 6), align_corners=False, half_pixel_centers=True)
2985+
save_data_and_tf_function(tf_resize_nearest, "tf_half_pixel_for_nn", np.random.rand(1, 2, 3, 2))
954 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)