Hu @<1523702406758535168:profile|FancyWhale93> , I'm not sure how the code was changed, can you provide a more full screenshot(s) of the task's execution section?
Answered
Hi. Here'S A Question.
I Wrote A Code Below For Pipeline,
Hi. here's a question.
I wrote a code below for pipeline,
ret = np.asarray(tlbr).copy()
if ret.shape == (4,):
ret[2:] -= ret[:2]
else:
ret[:, 2:] -= ret[:, :2]
and when I ran on agent It replaced to
ret = np.asarray(tlbr).copy()
if (ret.shape == (4,)):
ret[2:] -= ret[:2]
else:
ret[(:, 2:)] -= ret[(:, :2)]
and It breaks the python syntax.
what makes the breaking change and how to disable the wrong behavior?
332 Views
3
Answers
4 months ago
4 months ago
Tags