How to use zenlm/zen3-embedding-medium with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="zenlm/zen3-embedding-medium")
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("zenlm/zen3-embedding-medium") model = AutoModel.from_pretrained("zenlm/zen3-embedding-medium")
The community tab is the place to discuss and collaborate with the HF community!