You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In instance_bank.py, the function reset is only called at the first time entering the function get. But for a new clip, cached anchor/feature is not reset to None. Instead, cached anchor/feature of last clip is used. It maybe a bug but almost no impact on effect ?
The text was updated successfully, but these errors were encountered:
Yes, this is a bug, but it doesn't affect the outcome significantly.
The correct approach is to use instance_bank.mask for new clips, setting the temporal anchor and feature as the current anchor and feature in the temporal cross attention.
In instance_bank.py, the function
reset
is only called at the first time entering the functionget
. But for a new clip, cached anchor/feature is not reset to None. Instead, cached anchor/feature of last clip is used. It maybe a bug but almost no impact on effect ?The text was updated successfully, but these errors were encountered: