---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- dense
- generated_from_trainer
- dataset_size:7684
- loss:MultipleNegativesRankingLoss
base_model: FremyCompany/BioLORD-2023
widget:
- source_sentence: Are there mitotic figures visible?
sentences:
- skin biopsy showing inflammatory or neoplastic process
- immunohistochemistry staining for cancer subtyping
- skin surface showing pigmented lesion characteristics
- source_sentence: How many objects are visible?
sentences:
- non-clinical image requiring visual understanding
- dermoscopic view of cutaneous finding with pattern analysis
- general knowledge image without diagnostic purpose
- source_sentence: Are there signs of ulceration?
sentences:
- cytology slide with abnormal cells under microscope
- natural scene or object for general description
- clinical photograph of skin presentation for evaluation
- source_sentence: Is this indoors or outdoors?
sentences:
- natural scene or object for general description
- natural scene or object for general description
- medical query requiring general clinical assessment
- source_sentence: Grade the lesion visible in this microscopy image
sentences:
- tissue sample showing invasion and pleomorphism
- radiographic assessment of organ abnormalities
- immunohistochemistry staining for cancer subtyping
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on FremyCompany/BioLORD-2023
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [FremyCompany/BioLORD-2023](https://huggingface.co/FremyCompany/BioLORD-2023). It maps sentences & paragraphs to a 768-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:** [FremyCompany/BioLORD-2023](https://huggingface.co/FremyCompany/BioLORD-2023)
- **Maximum Sequence Length:** 128 tokens
- **Output Dimensionality:** 768 dimensions
- **Similarity Function:** Cosine Similarity
### Model Sources
- **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
- **Repository:** [Sentence Transformers on GitHub](https://github.com/huggingface/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': 128, 'do_lower_case': False, 'architecture': 'MPNetModel'})
(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, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
)
```
## 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("sentence_transformers_model_id")
# Run inference
sentences = [
'Grade the lesion visible in this microscopy image',
'immunohistochemistry staining for cancer subtyping',
'tissue sample showing invasion and pleomorphism',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[1.0000, 0.9862, 0.9891],
# [0.9862, 1.0000, 0.9885],
# [0.9891, 0.9885, 1.0000]])
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 7,684 training samples
* Columns: sentence_0 and sentence_1
* Approximate statistics based on the first 1000 samples:
| | sentence_0 | sentence_1 |
|:--------|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|
| type | string | string |
| details |
What type of tissue abnormality is visible in this slide? | immunohistochemistry staining for cancer subtyping |
| Evaluate the nuclear-to-cytoplasmic ratio | biopsy specimen with nuclear atypia and glandular structures |
| Describe the findings in the lung fields | imaging study for clinical correlation and diagnosis |
* Loss: [MultipleNegativesRankingLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
```json
{
"scale": 20.0,
"similarity_fct": "cos_sim",
"gather_across_devices": false
}
```
### Training Hyperparameters
#### Non-Default Hyperparameters
- `per_device_train_batch_size`: 32
- `per_device_eval_batch_size`: 32
- `num_train_epochs`: 10
- `multi_dataset_batch_sampler`: round_robin
#### All Hyperparameters