Skip to content

Commit 0bf47b2

Browse files
committed
Update concat to append
Signed-off-by: Lim, Kuan Xian <[email protected]>
1 parent 4664675 commit 0bf47b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keras/src/backend/openvino/numpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def amin(x, axis=None, keepdims=False):
192192

193193
def append(x1, x2, axis=None):
194194
x1, x2 = get_ov_output(x1), get_ov_output(x2)
195-
x1, x2 = _align_operand_types(x1, x2, "concat()")
195+
x1, x2 = _align_operand_types(x1, x2, "append()")
196196
if axis is None:
197197
flatten_shape = ov_opset.constant([-1], Type.i32).output(0)
198198
x1 = ov_opset.reshape(x1, flatten_shape, False).output(0)

0 commit comments

Comments
 (0)