How to use nvidia/omnivinci with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="nvidia/omnivinci", trust_remote_code=True)
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("nvidia/omnivinci", trust_remote_code=True, dtype="auto")
As far as I understand it this is a multi-modal LLM not a multi-modal embedding model?
If my understanding is correct then the tag might want to be updated as it's currently set to Feature Extraction.
· Sign up or log in to comment