algerianME5 is a specialized Sentence-Transformer model designed to map Algerian search queries to a 768-dimensional dense vector space, It is specifically fine-tuned to understand the nuances and the vocabulary of the Algerian car and real estate markets, where listings often mix Arabic, French, and darja in both Arabic and Latin script
1from sentence_transformers import SentenceTransformer
234model = SentenceTransformer("81melody/algerianME5")5sentences =[6'query: Rani nhawes 3la tonobil Hyundai i10',7'passage: سيارة Hyundai i10 2014 GLS · بنزين · يدوية · 1.1 · المسافة: 300,000 كم · عين تموشنت · Fiha bantoura',8'passage: سيارة Kia Cerato 2008 · مازوت · يدوية · المسافة: 230,000 كم · السعر: 135 مليون دج · سوق اهراس · Problem də terage',9]10embeddings = model.encode(sentences)11print(embeddings.shape)12# [3, 768]1314# Get the similarity scores for the embeddings15similarities = model.similarity(embeddings, embeddings)16print(similarities)
OR
python
1from sentence_transformers import SentenceTransformer , util
2model = SentenceTransformer("81melody/algerianME5")3listings =[4# REAL ESTATE5"بيع شقة 4 غرف الجزائر شراقة · شقة · 4 غرف · السعر: 4 مليون دج · Appartement Composé De 1 Suite Parentale... Résidence sécurisée",6"كراء شقة 4 غرف وهران وهران · شقة · 4 غرف · Location appartement par jour pour familles",7"بيع ارض تلمسان مغنية · ارض · الجزائر · بلان فالسانك مليح",8"كراء محل الجزائر الابيار · محل تجاري · 105 م² · Local avec Deux rideaux",910# CARS11"سيارة MG Zs Ev 2024 Comfort · بنزين · يدوية · 1.5 VTi-Tech 106ch · المسافة: 67,000 كم · Très beau SUV comme neuf",12"سيارة Hyundai Grand i10 2018 Restylée DZ · بنزين · يدوية · 1.2 ess 87ch · السعر: 265 مليون دج · صبيغة فيها لال و لامان",13"سيارة Renault Clio 4 2018 GT Line + · مازوت · يدوية · 1.5 DCI 85ch · السعر: 330 مليون دج"14]15queries =[16"شقة 4 غرف الجزائر",17"dar lel bi3 fi Alger centre",18"ard lel bi3 telemcan",19"chhal souma MG Zs Ev",20"Grand I10 2018 Restylée DZ",21"tonobil mliha fiha sbigha shwia"22]23 q_prefix ="query: "24 p_prefix ="passage: "2526 encoded_listings = model.encode(27[f"{p_prefix}{l}"for l in listings],28 convert_to_tensor=True,29 show_progress_bar=False30)31for query in queries:32print(f"\nQuery: '{query}'")333435 query_emb = model.encode(f"{q_prefix}{query}", convert_to_tensor=True)36 hits = util.semantic_search(query_emb, encoded_listings, top_k=3)[0]373839for i, hit inenumerate(hits):40 score = hit['score']41 doc_id = hit['corpus_id']42 display_text = listings[doc_id][:100]+"..."iflen(listings[doc_id])>100else listings[doc_id]43print(f"[Score: {score:.3f}] {display_text}")
Training Details
Training Dataset
Size: 100,000 training samples
Columns: sentence_0 and sentence_1
Approximate statistics based on the first 1000 samples:
sentence_0
sentence_1
type
string
string
details
min: 7 tokens
mean: 11.07 tokens
max: 22 tokens
min: 17 tokens
mean: 82.2 tokens
max: 256 tokens
Samples:
sentence_0
sentence_1
query: بيع محل وهران بئر
passage: بيع محل وهران بئر الجير · محل تجاري · 750 م² · السعر: 20 مليار دج · وهران · On vous propose en vente un local de 750 m² (550 m² en rez-de-chaussée et 200 m² sous pente) , avec deux rideaux électriques , pour le prix de : 20 Milliards fixe .[object Object][object Object]Pour plus de détails veuillez nous contacter
query: شقة الجزائر برج
passage: بيع شقة الجزائر برج الكيفان · شقة · 1 غرف · 64 م² · وثائق: دفتر عقاري · عقد موثق · الجزائر · 🔔OPPORTUNITÉ EN OR 🔔[object Object]– T2 à vendre +paiement par tranche dans 24mois[object Object][object Object]❄️À seulement quelques pas de la piscine, dans une site sécurisée et bien située, ce T2 en semi-finis une valeur sûre pour tout investisseur avisé.[object Object][object Object]Pourquoi ce bien est exceptionnel ?[object Object]✅️Localisation stratégique, très demandée[object Object]✅️Retour sur investissement rapide[object Object]✅️Prêt à être exploité dès l’achat ![object Object]✅️Un petit prix pour un grand potentiel.[object Object]✅️Les bonnes affaires ne durent jamais longtemps…[object Object]Saisissez cette opportunité maintenant !
query: GX3 PRO 2025 X3 Pro
passage: سيارة Geely GX3 PRO 2025 X3 pro livane · بنزين · اوتوماتيك · 1.5 · المسافة: جديدة · بجاية · Vent une livane x3pro neuf carte grise Safia
1@inproceedings{reimers-2019-sentence-bert,
2 title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
3 author = "Reimers, Nils and Gurevych, Iryna",
4 booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
5 month = "11",
6 year = "2019",
7 publisher = "Association for Computational Linguistics",
8 url = "https://arxiv.org/abs/1908.10084",
9}
MultipleNegativesRankingLoss
bibtex
1@misc{oord2019representationlearningcontrastivepredictive,
2 title={Representation Learning with Contrastive Predictive Coding},
3 author={Aaron van den Oord and Yazhe Li and Oriol Vinyals},
4 year={2019},
5 eprint={1807.03748},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/1807.03748},
9}