---
tags:
- sentence-transformers
- sentence-similarity
- feature-extraction
- dense
- generated_from_trainer
- dataset_size:13270
- loss:OnlineContrastiveLoss
base_model: cambridgeltl/SapBERT-from-PubMedBERT-fulltext
widget:
- source_sentence: prostaglandin E
sentences:
- Prostaglandins E
- profenamine
- Serotonin
- source_sentence: PGE2
sentences:
- Dizocilpine Maleate
- azelastine
- Dinoprostone
- source_sentence: Dexamethasone
sentences:
- Liver Neoplasms
- Neuroleptic Malignant Syndrome
- Dexamethasone
- source_sentence: testosterone
sentences:
- Contracture
- Testosterone
- Retinal Diseases
- source_sentence: IBS
sentences:
- Irritable Bowel Syndrome
- Propranolol
- Flushing
pipeline_tag: sentence-similarity
library_name: sentence-transformers
---
# SentenceTransformer based on cambridgeltl/SapBERT-from-PubMedBERT-fulltext
This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [cambridgeltl/SapBERT-from-PubMedBERT-fulltext](https://huggingface.co/cambridgeltl/SapBERT-from-PubMedBERT-fulltext). 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:** [cambridgeltl/SapBERT-from-PubMedBERT-fulltext](https://huggingface.co/cambridgeltl/SapBERT-from-PubMedBERT-fulltext)
- **Maximum Sequence Length:** 512 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': 512, 'do_lower_case': False, 'architecture': 'BertModel'})
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, '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("Stevenf232/fine-tuned-SapBERT3")
# Run inference
sentences = [
'IBS',
'Irritable Bowel Syndrome',
'Flushing',
]
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.7023, 0.4470],
# [0.7023, 1.0000, 0.4476],
# [0.4470, 0.4476, 1.0000]])
```
## Training Details
### Training Dataset
#### Unnamed Dataset
* Size: 13,270 training samples
* Columns: mention, entity, and label
* Approximate statistics based on the first 1000 samples:
| | mention | entity | label |
|:--------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:--------------------------------|
| type | string | string | int |
| details |
human immunodeficiency virus | HIV Infections | True |
| non-Hodgkin's lymphoma | Lymphoma, Non-Hodgkin | True |
| renal cell carsinom | Carcinoma, Renal Cell | True |
* Loss: [OnlineContrastiveLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#onlinecontrastiveloss)
### Evaluation Dataset
#### Unnamed Dataset
* Size: 12,795 evaluation samples
* Columns: mention, entity, and label
* Approximate statistics based on the first 1000 samples:
| | mention | entity | label |
|:--------|:--------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:--------------------------------|
| type | string | string | int |
| details | Postoperative myalgia | Pain, Postoperative | True |
| blood loss | Postpartum Hemorrhage | True |
| urethane | Urethane | True |
* Loss: [OnlineContrastiveLoss](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#onlinecontrastiveloss)
### Training Hyperparameters
#### Non-Default Hyperparameters
- `learning_rate`: 1e-05
- `optim`: adamw_torch
#### All Hyperparameters