---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- generated_from_trainer
- dataset_size:89544
- loss:CosineSimilarityLoss
base_model: sentence-transformers/all-MiniLM-L6-v2
widget:
- source_sentence: DOVSHI, Dover Shiso Liqueur 700ml
sentences:
- PINEAPPLE Gold XL
- Chocolate Donut t-SPRINKLE
- MEATPOR PORK SHOULDER BONELESS SKINLESS KSHLD CBO
- source_sentence: MCVITIES DIGESTIVE BISCUIT
sentences:
- Lichfield Mint Crisps
- SAUCE TERIYAKI
- RB PUFF PIE TOPS 230mm (36)
- source_sentence: OIL Sesame 2L (6)
sentences:
- '''HSH'' The Cured Gravlax (100g)'
- LAMB SHANKS IN RED WINE (APP 4.75KG CTN)
- COLOSSUS OLIVE OIL & VEGETABLE BLEND 18 OILC-06
- source_sentence: PARSLEY FLAKES 1kg bag new pack size
sentences:
- ACQUA PANNA STILL WATER 750ML-
- PINEAPPLE LOCAL -ripe
- '%Smith"s Crinkle Cut Chicken Potato Chips 170g'
- source_sentence: ADELAIDE HILLS PORK FENNEL & CHILLI
sentences:
- 2LX6 FRESH FULL CREAM MILK BUTTERCUP DAIR
- BACON SHORT CUT 2.5KG (2)
- S & B Golden Curry Mild Curry Sauce Mix 92g,
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on sentence-transformers/all-MiniLM-L6-v2
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2). It maps sentences & paragraphs to a 384-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
## Model Details
### Model Description
- **Model Type:** Sentence Transformer
- **Base model:** [sentence-transformers/all-MiniLM-L6-v2](https://huggingface.co/sentence-transformers/all-MiniLM-L6-v2)
- **Maximum Sequence Length:** 256 tokens
- **Output Dimensionality:** 384 dimensions
- **Similarity Function:** Cosine Similarity
### Model Sources
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
- **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
- **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
### Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'max_seq_length': 256, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
(2): Normalize()
)
```
## Usage
### Direct Usage (Sentence Transformers)
First install the Sentence Transformers library:
```bash
pip install -U sentence-transformers
```
Then you can load this model and run inference.
```python
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("tomerRest/line_item_embeddings_")
# Run inference
sentences = [
'ADELAIDE HILLS PORK FENNEL & CHILLI',
'BACON SHORT CUT 2.5KG (2)',
'2LX6 FRESH FULL CREAM MILK BUTTERCUP DAIR',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 384]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 89,544 training samples
* Columns: sentence_0, sentence_1, and label
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 | label |
|:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------|
| type | string | string | float |
| details |
Gravy M60 Gyoza 50p [5] | S.BERNARDO STILL WATER GLASS 12 X 750ML | 0.0 |
| RICE VERMICELLI 'Kongmoon' 454g (30) | II molino instant polenta corn meal pdm 500g Canned & Packet Food | 1.0 |
| Banana | Apple Green ( (Box ) | 1.0 |
* Loss: [CosineSimilarityLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
```json
{
"loss_fct": "torch.nn.modules.loss.MSELoss"
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 32
- `per_device_eval_batch_size`: 32
- `num_train_epochs`: 2
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters