Transformers How to use GPL/msmarco-distilbert-margin-mse with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="GPL/msmarco-distilbert-margin-mse") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("GPL/msmarco-distilbert-margin-mse")
model = AutoModel.from_pretrained("GPL/msmarco-distilbert-margin-mse")