Views
No views yet
1from transformers import AutoProcessor, AutoModelForCausalLM
2
3# Load the model and processor
4model = AutoModelForCausalLM.from_pretrained("IPEC-COMMUNITY/eo1-qwen2_5_vl-initial", trust_remote_code=True)
5processor = AutoProcessor.from_pretrained("IPEC-COMMUNITY/eo1-qwen2_5_vl-initial", trust_remote_code=True)
6
7# Ready for training - no additional setup required!| Token | Purpose |
|---|---|
<|action_start|> | Marks the beginning of action sequences |
<|action_pad|> | Padding token for actions |
<|action_pass|> | Pass-through token for actions |
<|action_end|> | Marks the end of action sequences |
<|state_start|> | Marks the beginning of state sequences |
<|state_pad|> | Padding token for states |
<|state_end|> | Marks the end of state sequences |
<|vla|> | Vision-Language-Action task token |