AI SeedbankHelp preserve open and free AI for humanity's future

← All models

deepset_bert-base-cased-squad2

deepset · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

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-base-cased-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: 71.1517 name: Exact Match verified: true verifyToken: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiZGZlNmQ1YzIzMWUzNTg4YmI4NWVhYThiMzE2ZGZmNWUzNDM3NWI0ZGJkNzliNGUxNTY2MDA5MWVkYjAwYWZiMCIsInZlcnNpb24iOjF9.iUvVdy5c4hoXkwlThJankQqG9QXzNilvfF1_4P0oL8X-jkY5Q6YSsZx6G6cpgXogqFpn7JlE_lP6_OT0VIamCg
      • type: f1 value: 74.6714 name: F1 verified: true verifyToken: eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJoYXNoIjoiMWE5OGNjODhmY2Y0NWIyZDIzMmQ2NmRjZGYyYTYzOWMxZDUzYzg4YjBhNTRiNTY4NTc0M2IxNjI5NWI5ZDM0NCIsInZlcnNpb24iOjF9.IqU9rbzUcKmDEoLkwCUZTKSH0ZFhtqgnhOaEDKKnaRMGBJLj98D5V4VirYT6jLh8FlR0FiwvMTMjReBcfTisAQ

This is a BERT base cased model trained on SQuAD v2

Overview

Language model: bert-base-cased 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-base-cased-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-base-cased-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:

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:331b0aa1a6ed44af922a1bfa6f82682653248d61&dn=deepset_bert-base-cased-squad2

Open magnet in torrent client · infohash 331b0aa1a6ed44af922a1bfa6f82682653248d61

Files & hashes

PathSizesha1sha256
README.md4.9 KB (5,064 B)ada2aef6fa222f434818836b47feee03bfe370bad977b19ba2b81f3e2a036ba95fc8ee21526f6872b73e10a23f17279bef9f3cf1
config.json508 B (508 B)2322fec5dbb8ce6b9274b7921e64305cbee12375391422fef2231863eaaa52ae97d034b3d1e206a1e2f35ea84fee824064f502f4
model.safetensors413.2 MB (433,270,764 B)2d82b0fec8cd9348dd6eece2994035026bb1a5fe2f69606d70f7255af92862c32b7ab3da030f1fcb2f109f9af5f02e31fb9f76af
pytorch_model.bin413.2 MB (433,294,681 B)71eca55677a94f5013660675b4fecf4d16f03db04f7cda139f23692c57757e7f71e71ed25107de904c4135f40ab1c511759f8d70
saved_model.tar.gz383.6 MB (402,254,231 B)944b0b26c4cda8844b76ff983f718c3e151fc8ead6361458d70b1eabb9ca6db8f64754644c129bf46cbf5def3e9c39129fd23c24
special_tokens_map.json112 B (112 B)e7b0375001f109a6b8873d756ad4f7bbb15fbaa5303df45a03609e4ead04bc3dc1536d0ab19b5358db685b6f3da123d05ec200e3
tokenizer_config.json152 B (152 B)f16bab4264fccb5a57ae0649c8349a150eb18c4c02a5a98f45f2e22b37b8157d9b427f7216248c401fecd51f4bd2672c00a5f35d
vocab.txt208.4 KB (213,450 B)2ea941cc79a6f3d7985ca6991ef4f67dad62af04eeaa9875b23b04b4c54ef759d03db9d1ba1554838f8fb26c5d96fa551df93d02

Cite this release

Canonical URL
https://aiseedbank.org/models/deepset_bert-base-cased-squad2/
Slug
deepset_bert-base-cased-squad2
Infohash
331b0aa1a6ed44af922a1bfa6f82682653248d61
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-base-cased-squad2.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorydeepset/bert-base-cased-squad2
Revision (pinned)d378e310c8000d824954c1e76c943a0581b49f0c
Fetched at2026-09-02T04:29:35Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:29:49Z

cc-by-4.01.18 GB (1,269,038,962 bytes)transformerspytorchjaxsafetensorsbertquestion-answeringmodel-indexendpoints_compatible1 language (en)