Closed LiUzHiAn closed 3 years ago
It seems that your forward() function in class SelfCompleteNet4 DOES NOT handle the optical flow data at all. Please check here.
forward()
SelfCompleteNet4
Why ofx1 = self.inc_of(incomplete_x)? I think it should be ofx1 = self.inc_of(incomplete_x_of), but I cannot find the incomplete_x_of...
ofx1 = self.inc_of(incomplete_x)
ofx1 = self.inc_of(incomplete_x_of)
incomplete_x_of
是不是这里有点错误呢?
Sorry for my mistake, I check the paper for details. The model takes frames as input and outputs optical flows.
Your code is Okay.
It seems that your
forward()
function in classSelfCompleteNet4
DOES NOT handle the optical flow data at all. Please check here.Why
ofx1 = self.inc_of(incomplete_x)
? I think it should beofx1 = self.inc_of(incomplete_x_of)
, but I cannot find theincomplete_x_of
...是不是这里有点错误呢?