Transformers How to use naver/ecir23-scratch-msmarco-splade-document with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="naver/ecir23-scratch-msmarco-splade-document") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("naver/ecir23-scratch-msmarco-splade-document")
model = AutoModelForMaskedLM.from_pretrained("naver/ecir23-scratch-msmarco-splade-document")