Spaces:
Running
on
Zero
Running
on
Zero
File size: 478 Bytes
e428df4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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")
|