Transformers How to use Alibaba-NLP/GVE-3B with Transformers:
# Load model directly
from transformers import AutoProcessor, AutoModel
processor = AutoProcessor.from_pretrained("Alibaba-NLP/GVE-3B", trust_remote_code=True)
model = AutoModel.from_pretrained("Alibaba-NLP/GVE-3B", trust_remote_code=True)