Open jimmyfyx opened 1 year ago
Thanks. It's definitely a bug. Please modify the forward function of FramePredictor2, FramePredictor3, FramePredictor4
to accept an additional variable return_intermediate_results: bool = False
similar to FramePredictor1
. That should solve this issue. We will update the code to fix this bug.
Please note that FramePredictor2, FramePredictor3, FramePredictor4
are used for ablations, where ground truth is available for some entities. The main DeCOMPnet model uses FramePredictor01
only.
OK Thanks!
Hi,
The following problem arises when I try to run
demo2()
inVeedDynamicTester01.py
:It seems that
demo2()
usesFramePredictor2
, and itsforward
method only takes one argumentinput_batch
, but we try to pass anotherreturn-intermediate_results
variable to it, so I wonder is this a bug or I did something wrong?Thanks!