sentence-transformers_paraphrase-albert-small-v2
sentence-transformers · 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.
license: apache-2.0 library_name: sentence-transformers tags:
- sentence-transformers
- feature-extraction
- sentence-similarity
- transformers datasets:
- flax-sentence-embeddings/stackexchange_xml
- s2orc
- ms_marco
- wiki_atomic_edits
- snli
- multi_nli
- embedding-data/altlex
- embedding-data/simple-wiki
- embedding-data/flickr30k-captions
- embedding-data/coco_captions
- embedding-data/sentence-compression
- embedding-data/QQP
- yahoo_answers_topics pipeline_tag: sentence-similarity
sentence-transformers/paraphrase-albert-small-v2
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-albert-small-v2')
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-albert-small-v2')
model = AutoModel.from_pretrained('sentence-transformers/paraphrase-albert-small-v2')
# 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': 100, 'do_lower_case': False}) with Transformer model: AlbertModel
(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:2e59ff9025d5cc2fd46b47739b761a82344e7a8d&dn=sentence-transformers_paraphrase-albert-small-v2Open magnet in torrent client · infohash 2e59ff9025d5cc2fd46b47739b761a82344e7a8d
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| 1_Pooling/config.json | 190 B (190 B) | 4e09f293dfe90bba49f87cfe7996271f07be2666 | a37f83ada23e7887be6b88f4998927dbeac0038af301553c7cd5461413bf1a56 |
| README.md | 3.8 KB (3,842 B) | aeaaf30f9f0414b96ce0da125fbf0f8fb0b3fcc3 | d2777a18bc0a4098472e1000fc43394ec0e7a8da1b201e06917c2c80d3fa0a78 |
| config.json | 827 B (827 B) | 7235f88d0d678d38fc243ea7e932cc388fa2cf0a | 69765de9af37e704755cab37bee53f251465c269ae3f0c95436ab250dd11e342 |
| config_sentence_transformers.json | 122 B (122 B) | b974b349cb2d419ada11181750a733ff82f291ad | b8c64b5cece00d8424b4896ea75b512b6008576088497609dfeb6bd63e6d36b8 |
| model.safetensors | 44.6 MB (46,741,600 B) | cdf784c6d85a6a2ebee36334ba978e6c843f3375 | 1343900266cae51bf42b6af56a5ee91a2e3e5ea2138deee8282eefc9738fe298 |
| modules.json | 229 B (229 B) | f7640f94e81bb7f4f04daf1668850b38763a13d9 | 8f4b264b80206c830bebbdcae377e137925650a433b689343a63bdc9b3145460 |
| openvino/openvino_model.bin | 42.3 MB (44,376,228 B) | 19bd0ffe9f265e58602e8298a963f0f6efa01a36 | c27eb1159679e3cd99c0c473aa0b47f1b6a7964eca8f4a6ac8c26e5957afa6c2 |
| openvino/openvino_model.xml | 242.6 KB (248,441 B) | fecacc27fae77012393baa1de9a82d4f696e9d98 | fbea51560f5bc051e2e10611ece50ae313da024a8625cbd84fc98efb68d1b0df |
| openvino/openvino_model_qint8_quantized.bin | 10.8 MB (11,289,996 B) | 1ac4843866b8a6f67c419677c0f0666a2ee89341 | 663fc19fd58902f471adabf2bcca124b75712072a2295a5d826b62fbbd3201e8 |
| openvino/openvino_model_qint8_quantized.xml | 365.0 KB (373,760 B) | 65ac7e3440799f2f4175416005956fee2ff549b1 | 2b9a3d692910a9c54d952b83f17af128fb6897bedcbe39beb1588fc800cf85b6 |
| pytorch_model.bin | 44.6 MB (46,747,799 B) | 63ed9d90af3246e870f87153c1576ec886fc32e7 | 4120d577507f732a10585d7993b963f6ee7c9e963a3926e88a0c1bbaeedf9c06 |
| rust_model.ot | 44.6 MB (46,745,679 B) | 5d6fd80d8d44806cf92b8079737b658ccc19f187 | c24ca54a1794d338ee78b8a9d0a6357bf3db8e0408d826fdf0ae20d1fdfed322 |
| sentence_bert_config.json | 53 B (53 B) | 3f3e5f70b7f9a4671371538a78bb09ada54587b4 | 8e33fd9a8b56b057ab82bcba899e699675d058547009181b3b9ecf66c7c6284d |
| special_tokens_map.json | 245 B (245 B) | 9b7b654cdd4e5739d85bc53220991daf6092da6b | 129fed06908ddcc3e36105e41d753ff0b934e5cfb2e451ca0a48904acef41863 |
| spiece.model | 742.5 KB (760,289 B) | 65999e5d811d9dc77a93bd712c8cb28e3addd852 | fefb02b667a6c5c2fe27602d28e5fb3428f66ab89c7d6f388e7c8d44a02d0336 |
| tokenizer.json | 1.3 MB (1,311,010 B) | 812316312aa8d5ee7a8688d41c083d40e22fef15 | d0a881fece9b11d4f8003a08ac7d8d65409e3aa573fc385faa8708cdd5a77087 |
| tokenizer_config.json | 465 B (465 B) | 0e82441bcaa44fde214149f8306b875668a12331 | 95f31ea415a8e447b1e2ca05b897a05c1f5857b0643579d42dbec5ac5c2555c1 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/sentence-transformers_paraphrase-albert-small-v2/
- Slug
- sentence-transformers_paraphrase-albert-small-v2
- Infohash
- 2e59ff9025d5cc2fd46b47739b761a82344e7a8d
- 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-albert-small-v2.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | sentence-transformers/paraphrase-albert-small-v2 |
|---|---|
| Revision (pinned) | 9d490b476eb5291c7885bb6d4961318740493cf2 |
| Fetched at | 2026-09-02T04:44:22Z |
| 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:44:26Z
apache-2.0189.4 MB (198,600,775 bytes)sentence-transformerspytorchrustonnxsafetensorsopenvinoalbertfeature-extractionsentence-similaritytransformersendpoints_compatible1 language (tf)paper: 1908.10084