dbstjswo505 / FRAG

FRAG: Frequency Adaptive Group for Diffusion Video Editing (ICML 2024)
MIT License
19 stars 12 forks source link

Difference Between basic_attention and causal_attention in config/config_sample.yaml #6

Closed kookie12 closed 1 week ago

kookie12 commented 1 week ago

Thank you for your greet research! In the config/config_sample.yaml, it seems that propagation corresponds to Tokenflow. Could you explain the difference between basic_attention and causal_attention and which models they correspond to?

dbstjswo505 commented 1 week ago

Yes, the basic attention is simple temporal attention across all the frames. The causal attention is the method of TAV, which attends all frames based on a specified single frame. Thank you.