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

← All models

sentence-transformers_paraphrase-distilroberta-base-v1

sentence-transformers · 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.


license: apache-2.0 library_name: sentence-transformers tags:

  • sentence-transformers
  • feature-extraction
  • sentence-similarity
  • transformers pipeline_tag: sentence-similarity

sentence-transformers/paraphrase-distilroberta-base-v1

This is a sentence-transformers model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.

Usage (Sentence-Transformers)

Using this model becomes easy when you have sentence-transformers installed:

pip install -U sentence-transformers

Then you can use the model like this:

from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]

model = SentenceTransformer('sentence-transformers/paraphrase-distilroberta-base-v1')
embeddings = model.encode(sentences)
print(embeddings)

Usage (HuggingFace Transformers)

Without sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.

from transformers import AutoTokenizer, AutoModel
import torch


#Mean Pooling - Take attention mask into account for correct averaging
def mean_pooling(model_output, attention_mask):
    token_embeddings = model_output[0] #First element of model_output contains all token embeddings
    input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
    return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)


# Sentences we want sentence embeddings for
sentences = ['This is an example sentence', 'Each sentence is converted']

# Load model from HuggingFace Hub
tokenizer = AutoTokenizer.from_pretrained('sentence-transformers/paraphrase-distilroberta-base-v1')
model = AutoModel.from_pretrained('sentence-transformers/paraphrase-distilroberta-base-v1')

# Tokenize sentences
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')

# Compute token embeddings
with torch.no_grad():
    model_output = model(**encoded_input)

# Perform pooling. In this case, max pooling.
sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])

print("Sentence embeddings:")
print(sentence_embeddings)

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: RobertaModel 
  (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)

Citing & Authors

This model was trained by sentence-transformers.

If you find this model helpful, feel free to cite our publication Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks:

@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "http://arxiv.org/abs/1908.10084",
}

Magnet link

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

magnet:?xt=urn:btih:11e0586cff88798439e533edd94e90353f0da02a&dn=sentence-transformers_paraphrase-distilroberta-base-v1

Open magnet in torrent client · infohash 11e0586cff88798439e533edd94e90353f0da02a

Files & hashes

PathSizesha1sha256
1_Pooling/config.json190 B (190 B)4e09f293dfe90bba49f87cfe7996271f07be2666a37f83ada23e7887be6b88f4998927dbeac0038af301553c7cd5461413bf1a56
README.md3.5 KB (3,552 B)c36ff24d2c70c5b58ae34c682c4e2cc394f5c4fd541f4b0ccacc8da461ea8c316b3cad083ab7d26ba883da04da2710e3031efcba
config.json718 B (718 B)2f17cd251d9dc18c711c92c40ab3c5ab77e42d6d0092633f7fd10d17a99996ef21d4fb0cd8640cf047a38c5f79d7cf0eb1957453
config_sentence_transformers.json122 B (122 B)b974b349cb2d419ada11181750a733ff82f291adb8c64b5cece00d8424b4896ea75b512b6008576088497609dfeb6bd63e6d36b8
merges.txt445.7 KB (456,356 B)6636bda4a1fd7a63653dffb22683b8162c8de956fe36cab26d4f4421ed725e10a2e9ddb7f799449c603a96e7f29b5a3c82a95862
model.safetensors313.3 MB (328,489,328 B)16a8e58dfde72c38cc44eb6bfeeea6def421aee3b4ac856a15f7faefc81b5611cb99a3504eb9ec6c76e041b5e7d039de70d7bc9d
modules.json229 B (229 B)f7640f94e81bb7f4f04daf1668850b38763a13d98f4b264b80206c830bebbdcae377e137925650a433b689343a63bdc9b3145460
openvino/openvino_model.bin311.0 MB (326,115,476 B)db823a684795ea0d7f1bacb319da0a4d324c8835b7bdfae2ba43334548d4177a178b7ba9952e2b880c3d057030c65569c1a753b3
openvino/openvino_model.xml211.5 KB (216,536 B)cb483386cab7160e6d828b2ebcc1c088622d80e824c83c4162a5dc56a3e7b22d03b712f0858773c5c509026e77109a645a1381c1
openvino/openvino_model_qint8_quantized.bin78.4 MB (82,214,692 B)46380cb5fe475e6c502a6e6830ffc86c84ab34d782ae350c2f17c17873ac858da7f191ebf5e9f0bb6f8988ee504d68140058b884
openvino/openvino_model_qint8_quantized.xml364.5 KB (373,222 B)8260a39a41642eff3a9b95db19cf649b89827c8d0b21ae2a6a177af4f8f429f873911346beb6ec7185873a0cd5795fc99133c665
pytorch_model.bin313.3 MB (328,515,953 B)9d362ee42050ed8db9021665d21416bea1c5f40a4bd939144a97913db8d38fc1445d18e0882eeb1aac445682efda42a878f24a18
sentence_bert_config.json53 B (53 B)5fd10429389515d3e5cccdeda08cae5fea1ae82e70f4448f31320443fe3557cacea5abf2dcc4915dda8c80646bec9f3bb0aa5a1f
special_tokens_map.json239 B (239 B)2ea7ad0e45a9d1d1591782ba7e29a703d0758831378eb3bf733eb16e65792d7e3fda5b8a4631387ca04d2015199c4d4f22ae554d
tokenizer.json1.3 MB (1,355,881 B)75801df688e89a96f642b98cbdd97288f520751833465117406b9007673e8ba283f7f1383d9b5094df947481af60eec94ed7d7bd
tokenizer_config.json1.3 KB (1,323 B)3fcfe0df45f79a3dfa0ef005b25fc25731d880d2dd22fd095bebff1a649946bdc1468e65ce84d1781d18e022654c6056d339c886
vocab.json779.6 KB (798,293 B)4ebe4bb3f3114daf2e4cc349f24873a1175a35d7ed19656ea1707df69134c4af35c8ceda2cc9860bf2c3495026153a133670ab5e

Cite this release

Canonical URL
https://aiseedbank.org/models/sentence-transformers_paraphrase-distilroberta-base-v1/
Slug
sentence-transformers_paraphrase-distilroberta-base-v1
Infohash
11e0586cff88798439e533edd94e90353f0da02a
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: sentence-transformers_paraphrase-distilroberta-base-v1.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorysentence-transformers/paraphrase-distilroberta-base-v1
Revision (pinned)48bffbbd27bf028ecdd0cd55abb51236ec12ef1b
Fetched at2026-09-02T04:44:26Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:44:38Z

apache-2.01019.0 MB (1,068,542,163 bytes)sentence-transformerspytorchjaxonnxsafetensorsopenvinorobertafeature-extractionsentence-similaritytransformerstext-embeddings-inferenceendpoints_compatible1 language (tf)paper: 1908.10084