symlink commited on
Commit
1a9120a
1 Parent(s): a35329f
Files changed (1) hide show
  1. 3.py +5 -0
3.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # Load model directly
2
+ from transformers import AutoProcessor, AutoModelForCausalLM
3
+
4
+ processor = AutoProcessor.from_pretrained("lmms-lab/LLaVA-NeXT-Video-32B-Qwen")
5
+ model = AutoModelForCausalLM.from_pretrained("lmms-lab/LLaVA-NeXT-Video-32B-Qwen")