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

← All models

distilbert_distilbert-base-multilingual-cased

distilbert · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

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:

  • multilingual
  • af
  • sq
  • ar
  • an
  • hy
  • ast
  • az
  • ba
  • eu
  • bar
  • be
  • bn
  • inc
  • bs
  • br
  • bg
  • my
  • ca
  • ceb
  • ce
  • zh
  • cv
  • hr
  • cs
  • da
  • nl
  • en
  • et
  • fi
  • fr
  • gl
  • ka
  • de
  • el
  • gu
  • ht
  • he
  • hi
  • hu
  • is
  • io
  • id
  • ga
  • it
  • ja
  • jv
  • kn
  • kk
  • ky
  • ko
  • la
  • lv
  • lt
  • roa
  • nds
  • lm
  • mk
  • mg
  • ms
  • ml
  • mr
  • mn
  • min
  • ne
  • new
  • nb
  • nn
  • oc
  • fa
  • pms
  • pl
  • pt
  • pa
  • ro
  • ru
  • sco
  • sr
  • hr
  • scn
  • sk
  • sl
  • aze
  • es
  • su
  • sw
  • sv
  • tl
  • tg
  • th
  • ta
  • tt
  • te
  • tr
  • uk
  • ud
  • uz
  • vi
  • vo
  • war
  • cy
  • fry
  • pnb
  • yo license: apache-2.0 datasets:
  • wikipedia

Model Card for DistilBERT base multilingual (cased)

Table of Contents

  1. Model Details
  2. Uses
  3. Bias, Risks, and Limitations
  4. Training Details
  5. Evaluation
  6. Environmental Impact
  7. Citation
  8. How To Get Started With the Model

Model Details

Model Description

This model is a distilled version of the BERT base multilingual model. The code for the distillation process can be found here. This model is cased: it does make a difference between english and English.

The model is trained on the concatenation of Wikipedia in 104 different languages listed here. The model has 6 layers, 768 dimension and 12 heads, totalizing 134M parameters (compared to 177M parameters for mBERT-base). On average, this model, referred to as DistilmBERT, is twice as fast as mBERT-base.

We encourage potential users of this model to check out the BERT base multilingual model card to learn more about usage, limitations and potential biases.

  • Developed by: Victor Sanh, Lysandre Debut, Julien Chaumond, Thomas Wolf (Hugging Face)
  • Model type: Transformer-based language model
  • Language(s) (NLP): 104 languages; see full list here
  • License: Apache 2.0
  • Related Models: BERT base multilingual model
  • Resources for more information:
    • GitHub Repository
    • Associated Paper

Uses

Direct Use and Downstream Use

You can use the raw model for either masked language modeling or next sentence prediction, but it's mostly intended to be fine-tuned on a downstream task. See the model hub to look for fine-tuned versions on a task that interests you.

Note that this model is primarily aimed at being fine-tuned on tasks that use the whole sentence (potentially masked) to make decisions, such as sequence classification, token classification or question answering. For tasks such as text generation you should look at model like GPT2.

Out of Scope Use

The model should not be used to intentionally create hostile or alienating environments for people. The model was not trained to be factual or true representations of people or events, and therefore using the models to generate such content is out-of-scope for the abilities of this model.

Bias, Risks, and Limitations

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 may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.

Recommendations

Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.

Training Details

  • The model was pretrained with the supervision of bert-base-multilingual-cased on the concatenation of Wikipedia in 104 different languages
  • The model has 6 layers, 768 dimension and 12 heads, totalizing 134M parameters.
  • Further information about the training procedure and data is included in the bert-base-multilingual-cased model card.

Evaluation

The model developers report the following accuracy results for DistilmBERT (see GitHub Repo):

Here are the results on the test sets for 6 of the languages available in XNLI. The results are computed in the zero shot setting (trained on the English portion and evaluated on the target language portion):

Model English Spanish Chinese German Arabic Urdu
mBERT base cased (computed) 82.1 74.6 69.1 72.3 66.4 58.5
mBERT base uncased (reported) 81.4 74.3 63.8 70.5 62.1 58.3
DistilmBERT 78.2 69.1 64.0 66.3 59.1 54.7

Environmental Impact

Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).

  • Hardware Type: More information needed
  • Hours used: More information needed
  • Cloud Provider: More information needed
  • Compute Region: More information needed
  • Carbon Emitted: More information needed

Citation

@article{Sanh2019DistilBERTAD,
  title={DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter},
  author={Victor Sanh and Lysandre Debut and Julien Chaumond and Thomas Wolf},
  journal={ArXiv},
  year={2019},
  volume={abs/1910.01108}
}

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.

How to Get Started With the Model

You can use the model directly with a pipeline for masked language modeling:

>>> from transformers import pipeline
>>> unmasker = pipeline('fill-mask', model='distilbert-base-multilingual-cased')
>>> unmasker("Hello I'm a [MASK] model.")

[{'score': 0.040800247341394424,
  'sequence': "Hello I'm a virtual model.",
  'token': 37859,
  'token_str': 'virtual'},
 {'score': 0.020015988498926163,
  'sequence': "Hello I'm a big model.",
  'token': 22185,
  'token_str': 'big'},
 {'score': 0.018680453300476074,
  'sequence': "Hello I'm a Hello model.",
  'token': 31178,
  'token_str': 'Hello'},
 {'score': 0.017396586015820503,
  'sequence': "Hello I'm a model model.",
  'token': 13192,
  'token_str': 'model'},
 {'score': 0.014229810796678066,
  'sequence': "Hello I'm a perfect model.",
  'token': 43477,
  'token_str': 'perfect'}]

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:a092c22dfeaa0eadad5089264b43f23096137e3d&dn=distilbert_distilbert-base-multilingual-cased

Open magnet in torrent client · infohash a092c22dfeaa0eadad5089264b43f23096137e3d

Files & hashes

PathSizesha1sha256
README.md7.1 KB (7,316 B)05ca5c8e7ff83a8477010dea3303e6dd7e8302ee5e6b3a60b4ee7b458dd5a0beda20f66988c6a3d4d993dab3d2fcb90a2c52f558
config.json466 B (466 B)39282414b0b9ae4c993643b6ba744ce9696f545067ab80c9a476e7c2d189cd03f95d297b04bd1d90e99765323af155ab6308960e
model.safetensors516.7 MB (541,795,680 B)d467fd9fa5d167b3ce90a9934dad05a927336b9afcf002be901b9ad708e0df430b8d18deaa4b3fe3519e24e9017a5ee17ca2c228
pytorch_model.bin516.7 MB (541,808,922 B)c309c9ab9cd06e1714edd32c1d28d53e642bc2510b528805ec3a430d9b678885d87615ac86d1ef8f4e9292a1b08b88799da70ba4
tokenizer.json1.9 MB (1,961,828 B)420b0fc31334c64ddf53cc3e9222a6d4c59d0caef4a4d5bf7301717e261fafbe26e1eb967f6ba4cb3ae0ab7a29f4642ec229f386
tokenizer_config.json49 B (49 B)2ba5de7675473164e07f3b3531748c9a6f113a2c0f6d13e6f4da6f9e24f22ada6bc3be571123d858d7c0c05a8a7cd55a9c23c2e8
vocab.txt972.2 KB (995,526 B)e837bab60a5d204e29622d127c2dafe508aa0731fe0fda7c425b48c516fc8f160d594c8022a0808447475c1a7c6d6479763f310c

Cite this release

Canonical URL
https://aiseedbank.org/models/distilbert_distilbert-base-multilingual-cased/
Slug
distilbert_distilbert-base-multilingual-cased
Infohash
a092c22dfeaa0eadad5089264b43f23096137e3d
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-multilingual-cased.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorydistilbert/distilbert-base-multilingual-cased
Revision (pinned)45c032ab32cc946ad88a166f7cb282f58c753c2e
Fetched at2026-09-03T22:22:02Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-03T22:22:17Z

apache-2.01.01 GB (1,086,569,787 bytes)transformerspytorchonnxsafetensorsdistilbertfill-maskmultilingualastbarinccebroandsminnewpmsscoscnazewarfrypnbendpoints_compatible88 languages (tf, af, sq …)paper: 1910.01108paper: 1910.09700