distilbert_distilbert-base-uncased-distilled-squad
distilbert · 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 datasets:
- squad widget:
- text: "Which name is also used to describe the Amazon rainforest in English?" context: "The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia; Spanish: Selva Amazónica, Amazonía or usually Amazonia; French: Forêt amazonienne; Dutch: Amazoneregenwoud), also known in English as Amazonia or the Amazon Jungle, is a moist broadleaf forest that covers most of the Amazon basin of South America. This basin encompasses 7,000,000 square kilometres (2,700,000 sq mi), of which 5,500,000 square kilometres (2,100,000 sq mi) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained within Brazil, with 60% of the rainforest, followed by Peru with 13%, Colombia with 10%, and with minor amounts in Venezuela, Ecuador, Bolivia, Guyana, Suriname and French Guiana. States or departments in four nations contain "Amazonas" in their names. The Amazon represents over half of the planet's remaining rainforests, and comprises the largest and most biodiverse tract of tropical rainforest in the world, with an estimated 390 billion individual trees divided into 16,000 species."
- text: "How many square kilometers of rainforest is covered in the basin?" context: "The Amazon rainforest (Portuguese: Floresta Amazônica or Amazônia; Spanish: Selva Amazónica, Amazonía or usually Amazonia; French: Forêt amazonienne; Dutch: Amazoneregenwoud), also known in English as Amazonia or the Amazon Jungle, is a moist broadleaf forest that covers most of the Amazon basin of South America. This basin encompasses 7,000,000 square kilometres (2,700,000 sq mi), of which 5,500,000 square kilometres (2,100,000 sq mi) are covered by the rainforest. This region includes territory belonging to nine nations. The majority of the forest is contained within Brazil, with 60% of the rainforest, followed by Peru with 13%, Colombia with 10%, and with minor amounts in Venezuela, Ecuador, Bolivia, Guyana, Suriname and French Guiana. States or departments in four nations contain "Amazonas" in their names. The Amazon represents over half of the planet's remaining rainforests, and comprises the largest and most biodiverse tract of tropical rainforest in the world, with an estimated 390 billion individual trees divided into 16,000 species." license: apache-2.0
DistilBERT base uncased distilled SQuAD
Table of Contents
- Model Details
- How To Get Started With the Model
- Uses
- Risks, Limitations and Biases
- Training
- Evaluation
- Environmental Impact
- Technical Specifications
- Citation Information
- Model Card Authors
Model Details
Model Description: The DistilBERT model was proposed in the blog post Smaller, faster, cheaper, lighter: Introducing DistilBERT, adistilled version of BERT, and the paper DistilBERT, adistilled version of BERT: smaller, faster, cheaper and lighter. DistilBERT is a small, fast, cheap and light Transformer model trained by distilling BERT base. It has 40% less parameters than bert-base-uncased, runs 60% faster while preserving over 95% of BERT's performances as measured on the GLUE language understanding benchmark.
This model is a fine-tune checkpoint of DistilBERT-base-uncased, fine-tuned using (a second step of) knowledge distillation on SQuAD v1.1.
- Developed by: Hugging Face
- Model Type: Transformer-based language model
- Language(s): English
- License: Apache 2.0
- Related Models: DistilBERT-base-uncased
- Resources for more information:
- See this repository for more about Distil* (a class of compressed models including this model)
- See Sanh et al. (2019) for more information about knowledge distillation and the training procedure
How to Get Started with the Model
Use the code below to get started with the model.
>>> from transformers import pipeline
>>> question_answerer = pipeline("question-answering", model='distilbert-base-uncased-distilled-squad')
>>> context = r"""
... Extractive Question Answering is the task of extracting an answer from a text given a question. An example of a
... question answering dataset is the SQuAD dataset, which is entirely based on that task. If you would like to fine-tune
... a model on a SQuAD task, you may leverage the examples/pytorch/question-answering/run_squad.py script.
... """
>>> result = question_answerer(question="What is a good example of a question answering dataset?", context=context)
>>> print(
... f"Answer: '{result['answer']}', score: {round(result['score'], 4)}, start: {result['start']}, end: {result['end']}"
...)
Answer: 'SQuAD dataset', score: 0.4704, start: 147, end: 160
Here is how to use this model in PyTorch:
from transformers import DistilBertTokenizer, DistilBertForQuestionAnswering
import torch
tokenizer = DistilBertTokenizer.from_pretrained('distilbert-base-uncased-distilled-squad')
model = DistilBertForQuestionAnswering.from_pretrained('distilbert-base-uncased-distilled-squad')
question, text = "Who was Jim Henson?", "Jim Henson was a nice puppet"
inputs = tokenizer(question, text, return_tensors="pt")
with torch.no_grad():
outputs = model(**inputs)
answer_start_index = torch.argmax(outputs.start_logits)
answer_end_index = torch.argmax(outputs.end_logits)
predict_answer_tokens = inputs.input_ids[0, answer_start_index : answer_end_index + 1]
tokenizer.decode(predict_answer_tokens)
And in TensorFlow:
from transformers import DistilBertTokenizer, TFDistilBertForQuestionAnswering
import tensorflow as tf
tokenizer = DistilBertTokenizer.from_pretrained("distilbert-base-uncased-distilled-squad")
model = TFDistilBertForQuestionAnswering.from_pretrained("distilbert-base-uncased-distilled-squad")
question, text = "Who was Jim Henson?", "Jim Henson was a nice puppet"
inputs = tokenizer(question, text, return_tensors="tf")
outputs = model(**inputs)
answer_start_index = int(tf.math.argmax(outputs.start_logits, axis=-1)[0])
answer_end_index = int(tf.math.argmax(outputs.end_logits, axis=-1)[0])
predict_answer_tokens = inputs.input_ids[0, answer_start_index : answer_end_index + 1]
tokenizer.decode(predict_answer_tokens)
Uses
This model can be used for question answering.
Misuse and Out-of-scope Use
The model should not be used to intentionally create hostile or alienating environments for people. In addition, the model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model.
Risks, Limitations and Biases
CONTENT WARNING: Readers should be aware that language generated by this model can be disturbing or offensive to some and can propagate historical and current stereotypes.
Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). Predictions generated by the model can include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups. For example:
>>> from transformers import pipeline
>>> question_answerer = pipeline("question-answering", model='distilbert-base-uncased-distilled-squad')
>>> context = r"""
... Alice is sitting on the bench. Bob is sitting next to her.
... """
>>> result = question_answerer(question="Who is the CEO?", context=context)
>>> print(
... f"Answer: '{result['answer']}', score: {round(result['score'], 4)}, start: {result['start']}, end: {result['end']}"
...)
Answer: 'Bob', score: 0.4183, start: 32, end: 35
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.
Training
Training Data
The distilbert-base-uncased model model describes it's training data as:
DistilBERT pretrained on the same data as BERT, which is BookCorpus, a dataset consisting of 11,038 unpublished books and English Wikipedia (excluding lists, tables and headers).
To learn more about the SQuAD v1.1 dataset, see the SQuAD v1.1 data card.
Training Procedure
Preprocessing
See the distilbert-base-uncased model card for further details.
Pretraining
See the distilbert-base-uncased model card for further details.
Evaluation
As discussed in the model repository
This model reaches a F1 score of 86.9 on the [SQuAD v1.1] dev set (for comparison, Bert bert-base-uncased version reaches a F1 score of 88.5).
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019). We present the hardware type and hours used based on the associated paper. Note that these details are just for training DistilBERT, not including the fine-tuning with SQuAD.
- Hardware Type: 8 16GB V100 GPUs
- Hours used: 90 hours
- Cloud Provider: Unknown
- Compute Region: Unknown
- Carbon Emitted: Unknown
Technical Specifications
See the associated paper for details on the modeling architecture, objective, compute infrastructure, and training details.
Citation Information
@inproceedings{sanh2019distilbert,
title={DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter},
author={Sanh, Victor and Debut, Lysandre and Chaumond, Julien and Wolf, Thomas},
booktitle={NeurIPS EMC^2 Workshop},
year={2019}
}
APA:
- Sanh, V., Debut, L., Chaumond, J., & Wolf, T. (2019). DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter. arXiv preprint arXiv:1910.01108.
Model Card Authors
This model card was written by the Hugging Face team.
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:f14f8da8bbc35f8410d5d0b349f4e1b05e6804b9&dn=distilbert_distilbert-base-uncased-distilled-squadOpen magnet in torrent client · infohash f14f8da8bbc35f8410d5d0b349f4e1b05e6804b9
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| 384-8bits.tflite | 64.5 MB (67,610,976 B) | 1f7a2fa611903354deb9e2bdc3805b49aa88880e | 99aa0f0cc06c676f7f95d2c95abefedcd0037371db6b014268c29ea3d466aa68 |
| 384-fp16.tflite | 126.7 MB (132,825,972 B) | acb159648c208af1177427acbf92e187afa2aca4 | da82f87bde746039d095afc2930b34b10eafce4ed7e24f1114815a0eac00cb1c |
| 384.tflite | 253.0 MB (265,337,392 B) | 6519cda06e8fbe5e3e3e4404723e39ec946ccc6d | 6e2a8df35c8d00f8431e9bd753f8dc2329277ada99839059556890a3800c6a81 |
| README.md | 10.7 KB (10,965 B) | 0b298d17370f921d509f47b8caa2e059a711e93b | 09502fa711fac124fc912977b992d4228c060dff1c140f935c6e89edea96243d |
| config.json | 451 B (451 B) | 57099ca850bb18652436fed90fd8498e905095df | d5c8ffef9b7e1dfb7dceed1f171efc30805f6021d4d16ff867ef697eb043e7d0 |
| coreml_model.mlmodel | 253.2 MB (265,486,673 B) | 4094126baecc55f11e4339d70ce2606caa9339fe | b4cb8385132328f31bc7a63ef38eb3d8ee6b630d3c4fd72d62e8cec9dfa16245 |
| coreml_model_fp16.mlmodel | 172.2 MB (180,548,849 B) | 335afd5d1748b55374787b7775f44b31f7eff327 | c97c02b13632dd20672a07c7ac371a491933ee9d50d738f1e3b8b8106cadd3c5 |
| model.safetensors | 253.2 MB (265,470,036 B) | 511feb504dd241407c6ee942e947f92b850576d3 | a8f85421e410ee12fa02f5a2edc45dd7c3db75bfc6c3a05d6bb4c0385527d7c0 |
| pytorch_model.bin | 253.2 MB (265,481,570 B) | 69c9736e562dd0ee7e83a7a1e9845a5f7f431c59 | 22cbcd1c2d2e3190cdb7658f0fd330e4c2bc18056a1e6612a4430197b7368372 |
| saved_model.tar.gz | 233.5 MB (244,849,235 B) | 74f716b714961b349e30ccda0b8d526a3e02b67c | f524a67ca1e31c075e12d856ec43c478133c12048939fc0e5f3fa7662e8799f0 |
| tokenizer.json | 455.1 KB (466,062 B) | 949a6f013d67eb8a5b4b5b46026217b888021b88 | ce64fce797c24f68df90b40a3f74f579b336a493db14bd583fd520ea0d8c9a98 |
| tokenizer_config.json | 48 B (48 B) | e5c73d8a50df1f56fb5b0b8002d7cf4010afdccb | a025160ef0431f1a392f6f050c1310f4c5d9fb6f275932dbccba73c4d214bf10 |
| vocab.txt | 226.1 KB (231,508 B) | fb140275c155a9c7c5a3b3e0e77a9e839594a938 | 07eced375cec144d27c900241f3e339478dec958f92fddbc551f295c992038a3 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/distilbert_distilbert-base-uncased-distilled-squad/
- Slug
- distilbert_distilbert-base-uncased-distilled-squad
- Infohash
- f14f8da8bbc35f8410d5d0b349f4e1b05e6804b9
- License
- apache-2.0
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: distilbert_distilbert-base-uncased-distilled-squad.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | distilbert/distilbert-base-uncased-distilled-squad |
|---|---|
| Revision (pinned) | dfb8fa0e03905f0b6ea92133e56b6fef138015f2 |
| Fetched at | 2026-09-02T04:33:42Z |
| License at fetch | apache-2.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:34:01Z
apache-2.01.57 GB (1,688,319,737 bytes)transformerspytorchtflitecoremlsafetensorsdistilbertquestion-answeringendpoints_compatible2 languages (tf, en)paper: 1910.01108paper: 1910.09700