VideoLLaMA2-7B / videollama2 /train_flash_attn.py
Aliayub1995's picture
Upload 52 files
87ce8f2 verified
# Adopted from https://github.com/haotian-liu/LLaVA. Below is the original copyright:
# Adopted from https://github.com/lm-sys/FastChat. Below is the original copyright:
# Adopted from tatsu-lab@stanford_alpaca. Below is the original copyright:
# Make it more memory efficient by monkey patching the LLaMA model with FlashAttn.
import sys
sys.path.append('./')
from videollama2.train import train
if __name__ == "__main__":
train(attn_implementation="flash_attention_2")