deepset_bert-large-uncased-whole-word-masking-squad2
deepset · View on Hugging Face ↗
Get this model
Seeders: 1 · Leechers: 0
Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.
Model card
The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.
language: en license: cc-by-4.0 datasets:
- squad_v2 model-index:
- name: deepset/bert-large-uncased-whole-word-masking-squad2
results:
- task:
type: question-answering
name: Question Answering
dataset:
name: squad_v2
type: squad_v2
config: squad_v2
split: validation
metrics:
- type: exact_match value: 80.8846 name: Exact Match verified: true verifyToken: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiY2E5ZGNkY2ExZWViZGEwNWE3OGRmMWM2ZmE4ZDU4ZDQ1OGM3ZWE0NTVmZjFmYmZjZmJmNjJmYTc3NTM3OTk3OSIsInZlcnNpb24iOjF9.aSblF4ywh1fnHHrN6UGL392R5KLaH3FCKQlpiXo_EdQ4XXEAENUCjYm9HWDiFsgfSENL35GkbSyz_GAhnefsAQ
- type: f1 value: 83.8765 name: F1 verified: true verifyToken: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiNGFlNmEzMTk2NjRkNTI3ZTk3ZTU1NWNlYzIyN2E0ZDFlNDA2ZjYwZWJlNThkMmRmMmE0YzcwYjIyZDM5NmRiMCIsInZlcnNpb24iOjF9.-rc2_Bsp_B26-o12MFYuAU0Ad2Hg9PDx7Preuk27WlhYJDeKeEr32CW8LLANQABR3Mhw2x8uTYkEUrSDMxxLBw
- task:
type: question-answering
name: Question Answering
dataset:
name: squad
type: squad
config: plain_text
split: validation
metrics:
- type: exact_match value: 85.904 name: Exact Match
- type: f1 value: 92.586 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: adversarial_qa
type: adversarial_qa
config: adversarialQA
split: validation
metrics:
- type: exact_match value: 28.233 name: Exact Match
- type: f1 value: 41.170 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squad_adversarial
type: squad_adversarial
config: AddOneSent
split: validation
metrics:
- type: exact_match value: 78.064 name: Exact Match
- type: f1 value: 83.591 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squadshifts amazon
type: squadshifts
config: amazon
split: test
metrics:
- type: exact_match value: 65.615 name: Exact Match
- type: f1 value: 80.733 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squadshifts new_wiki
type: squadshifts
config: new_wiki
split: test
metrics:
- type: exact_match value: 81.570 name: Exact Match
- type: f1 value: 91.199 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squadshifts nyt
type: squadshifts
config: nyt
split: test
metrics:
- type: exact_match value: 83.279 name: Exact Match
- type: f1 value: 91.090 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squadshifts reddit
type: squadshifts
config: reddit
split: test
metrics:
- type: exact_match value: 69.305 name: Exact Match
- type: f1 value: 82.405 name: F1
- task:
type: question-answering
name: Question Answering
dataset:
name: squad_v2
type: squad_v2
config: squad_v2
split: validation
metrics:
bert-large-uncased-whole-word-masking-squad2 for Extractive QA
This is a berta-large model, fine-tuned using the SQuAD2.0 dataset for the task of question answering.
Overview
Language model: bert-large
Language: English
Downstream-task: Extractive QA
Training data: SQuAD 2.0
Eval data: SQuAD 2.0
Code: See an example extractive QA pipeline built with Haystack
Usage
In Haystack
Haystack is an AI orchestration framework to build customizable, production-ready LLM applications. You can use this model in Haystack to do extractive question answering on documents. To load and run the model with Haystack:
# After running pip install haystack-ai "transformers[torch,sentencepiece]"
from haystack import Document
from haystack.components.readers import ExtractiveReader
docs = [
Document(content="Python is a popular programming language"),
Document(content="python ist eine beliebte Programmiersprache"),
]
reader = ExtractiveReader(model="deepset/bert-large-uncased-whole-word-masking-squad2")
reader.warm_up()
question = "What is a popular programming language?"
result = reader.run(query=question, documents=docs)
# {'answers': [ExtractedAnswer(query='What is a popular programming language?', score=0.5740374326705933, data='python', document=Document(id=..., content: '...'), context=None, document_offset=ExtractedAnswer.Span(start=0, end=6),...)]}
For a complete example with an extractive question answering pipeline that scales over many documents, check out the corresponding Haystack tutorial.
In Transformers
from transformers import AutoModelForQuestionAnswering, AutoTokenizer, pipeline
model_name = "deepset/bert-large-uncased-whole-word-masking-squad2"
# a) Get predictions
nlp = pipeline('question-answering', model=model_name, tokenizer=model_name)
QA_input = {
'question': 'Why is model conversion important?',
'context': 'The option to convert models between FARM and transformers gives freedom to the user and let people easily switch between frameworks.'
}
res = nlp(QA_input)
# b) Load model & tokenizer
model = AutoModelForQuestionAnswering.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
About us
deepset is the company behind the production-ready open-source AI framework Haystack.
Some of our other work:
- Distilled roberta-base-squad2 (aka "tinyroberta-squad2")
- German BERT, GermanQuAD and GermanDPR, German embedding model
- deepset Cloud, deepset Studio
Get in touch and join the Haystack community
For more info on Haystack, visit our GitHub repo and Documentation.
We also have a Discord community open to everyone!
Twitter | LinkedIn | Discord | GitHub Discussions | Website | YouTube
By the way: we're hiring!
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:f41d5c3dfea5de7d20f07875bb0b58db0827e722&dn=deepset_bert-large-uncased-whole-word-masking-squad2Open magnet in torrent client · infohash f41d5c3dfea5de7d20f07875bb0b58db0827e722
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 7.4 KB (7,538 B) | 03d47c870d647172fb705090ede5873531b0c8a4 | 8d7e2338ccf48fe8db8effdb5d6fb05f601c300a8408b56bf67d422ae34cd5a1 |
| added_tokens.json | 2 B (2 B) | 9e26dfeeb6e641a33dae4961196235bdb965b21b | 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a |
| config.json | 540 B (540 B) | 173b2a4e340b70e4df03a2e26e36783701d4955c | 6b0aac2c2ff8dd872cb8f7f179b4664abae9e3a598a4cd1fc7d85f6b9731b2dd |
| model.safetensors | 1.25 GB (1,340,622,760 B) | e09f387aab23471c3f3228338f60b168ff408556 | f40d65b33b6c2afd0883afa3b5bb08ab4668497853539ba0809de002dd1deaef |
| pytorch_model.bin | 1.25 GB (1,340,669,807 B) | d373d3b15514137123237eb8a61a1e607fb2a4cf | bb9ea214f1b492bfe00d692a9583a3eb7f73700b2a4250492f507f0733996fe5 |
| saved_model.tar.gz | 1.16 GB (1,245,402,618 B) | 1d2b62f8e23a266dc7dc2f0d448202ee3f09b732 | 905fc7ee48cae3973d7c95c6631950b4161bff2c8c5859cdcd7981f7f1049e7f |
| special_tokens_map.json | 112 B (112 B) | e7b0375001f109a6b8873d756ad4f7bbb15fbaa5 | 303df45a03609e4ead04bc3dc1536d0ab19b5358db685b6f3da123d05ec200e3 |
| tokenizer_config.json | 19 B (19 B) | 66051e65c65b3ec5e0b437496d1e545c5d8934b4 | 61785aeaba176fba6d6489f27dccfd2ddee6aee2af0e590451cab7d8b57e0874 |
| vocab.txt | 226.1 KB (231,508 B) | fb140275c155a9c7c5a3b3e0e77a9e839594a938 | 07eced375cec144d27c900241f3e339478dec958f92fddbc551f295c992038a3 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/deepset_bert-large-uncased-whole-word-masking-squad2/
- Slug
- deepset_bert-large-uncased-whole-word-masking-squad2
- Infohash
- f41d5c3dfea5de7d20f07875bb0b58db0827e722
- License
- cc-by-4.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: deepset_bert-large-uncased-whole-word-masking-squad2.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | deepset/bert-large-uncased-whole-word-masking-squad2 |
|---|---|
| Revision (pinned) | 0a489d6caaf651c1983e8ecd8a418c7f65993d72 |
| Fetched at | 2026-09-02T04:29:50Z |
| License at fetch | cc-by-4.0 |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:30:30Z
cc-by-4.03.66 GB (3,926,934,904 bytes)transformerspytorchjaxsafetensorsbertquestion-answeringmodel-indexendpoints_compatible2 languages (tf, en)