How to use deepset/deberta-v3-large-squad2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="deepset/deberta-v3-large-squad2")
# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("deepset/deberta-v3-large-squad2") model = AutoModelForQuestionAnswering.from_pretrained("deepset/deberta-v3-large-squad2")
Could you tell me the score threshold for no answer? Thanks!
Same question. Could you please share the threshold? Thanks!
路 Sign up or log in to comment