initial commit b1d12c6
Ubuntu commited on
How to use Marqo/gcl-e5-large-v2-113-gs-full with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="Marqo/gcl-e5-large-v2-113-gs-full") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("Marqo/gcl-e5-large-v2-113-gs-full")
model = AutoModel.from_pretrained("Marqo/gcl-e5-large-v2-113-gs-full")