Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -5,121 +5,63 @@ tags:
|
|
| 5 |
- feature-extraction
|
| 6 |
- sentence-similarity
|
| 7 |
- transformers
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
#
|
| 11 |
|
| 12 |
-
|
| 13 |
|
| 14 |
-
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
|
|
|
|
|
|
| 19 |
|
| 20 |
-
|
| 21 |
-
pip install -U sentence-transformers
|
| 22 |
-
```
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
```python
|
| 27 |
-
from sentence_transformers import SentenceTransformer
|
| 28 |
-
sentences = ["This is an example sentence", "Each sentence is converted"]
|
| 29 |
-
|
| 30 |
-
model = SentenceTransformer('{MODEL_NAME}')
|
| 31 |
-
embeddings = model.encode(sentences)
|
| 32 |
-
print(embeddings)
|
| 33 |
```
|
| 34 |
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
## Usage (HuggingFace Transformers)
|
| 38 |
-
Without [sentence-transformers](https://www.SBERT.net), 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.
|
| 39 |
-
|
| 40 |
```python
|
| 41 |
-
from
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
#
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
with torch.no_grad():
|
| 64 |
-
model_output = model(**encoded_input)
|
| 65 |
-
|
| 66 |
-
# Perform pooling. In this case, mean pooling.
|
| 67 |
-
sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
|
| 68 |
-
|
| 69 |
-
print("Sentence embeddings:")
|
| 70 |
-
print(sentence_embeddings)
|
| 71 |
-
```
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
## Evaluation Results
|
| 76 |
-
|
| 77 |
-
<!--- Describe how your model was evaluated -->
|
| 78 |
-
|
| 79 |
-
For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
## Training
|
| 83 |
-
The model was trained with the parameters:
|
| 84 |
-
|
| 85 |
-
**DataLoader**:
|
| 86 |
-
|
| 87 |
-
`torch.utils.data.dataloader.DataLoader` of length 3101 with parameters:
|
| 88 |
-
```
|
| 89 |
-
{'batch_size': 14, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
|
| 90 |
-
```
|
| 91 |
-
|
| 92 |
-
**Loss**:
|
| 93 |
-
|
| 94 |
-
`sentence_transformers.losses.CosineSimilarityLoss.CosineSimilarityLoss`
|
| 95 |
-
|
| 96 |
-
Parameters of the fit()-Method:
|
| 97 |
-
```
|
| 98 |
-
{
|
| 99 |
-
"epochs": 10,
|
| 100 |
-
"evaluation_steps": 1000,
|
| 101 |
-
"evaluator": "sentence_transformers.evaluation.EmbeddingSimilarityEvaluator.EmbeddingSimilarityEvaluator",
|
| 102 |
-
"max_grad_norm": 1,
|
| 103 |
-
"optimizer_class": "<class 'transformers.optimization.AdamW'>",
|
| 104 |
-
"optimizer_params": {
|
| 105 |
-
"lr": 2e-05
|
| 106 |
-
},
|
| 107 |
-
"scheduler": "WarmupLinear",
|
| 108 |
-
"steps_per_epoch": null,
|
| 109 |
-
"warmup_steps": 100,
|
| 110 |
-
"weight_decay": 0.01
|
| 111 |
-
}
|
| 112 |
```
|
| 113 |
|
|
|
|
| 114 |
|
| 115 |
-
## Full Model Architecture
|
| 116 |
```
|
| 117 |
SentenceTransformer(
|
| 118 |
-
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with
|
| 119 |
-
(1): Pooling({'word_embedding_dimension': 768, '
|
| 120 |
)
|
| 121 |
```
|
| 122 |
|
| 123 |
-
##
|
| 124 |
|
| 125 |
-
|
|
|
|
| 5 |
- feature-extraction
|
| 6 |
- sentence-similarity
|
| 7 |
- transformers
|
| 8 |
+
- neuroradiology
|
| 9 |
+
- medical
|
| 10 |
+
license: apache-2.0
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# NeuroBERT
|
| 14 |
|
| 15 |
+
A sentence-transformers model optimized for neuroradiology reports. Maps sentences to 768-dimensional embeddings for semantic similarity tasks.
|
| 16 |
|
| 17 |
+
## Overview
|
| 18 |
|
| 19 |
+
NeuroBERT is a RoBERTa-based model with a **custom 10,000-word neuroradiology vocabulary** trained from scratch. Standard BERT tokenization fragments medical terms (e.g., "hemorrhage" → "he", "morr", "hage"), so we trained a domain-specific WordPiece vocabulary to preserve neuroradiologic terminology.
|
| 20 |
|
| 21 |
+
**Training:**
|
| 22 |
+
1. **Masked language modeling** on neuroradiology reports (next sentence prediction omitted as adjacent sentences are often unrelated)
|
| 23 |
+
2. **Radiology section matching** using a SentenceBERT twin-network architecture to align Findings and Summary sections from the same report
|
| 24 |
|
| 25 |
+
## Usage
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
```bash
|
| 28 |
+
pip install -U sentence-transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
```
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
```python
|
| 32 |
+
from sentence_transformers import SentenceTransformer, util
|
| 33 |
+
|
| 34 |
+
model = SentenceTransformer('davvwood/NeuroBERT')
|
| 35 |
+
|
| 36 |
+
# Reference templates for normal findings
|
| 37 |
+
templates = [
|
| 38 |
+
'normal study',
|
| 39 |
+
'normal appearances of the brain',
|
| 40 |
+
'no intracranial abnormality identified'
|
| 41 |
+
]
|
| 42 |
+
template_embeddings = model.encode(templates)
|
| 43 |
+
|
| 44 |
+
# Example reports
|
| 45 |
+
reports = [
|
| 46 |
+
"mri head: there is restricted diffusion in the left paramedian ventral pons at the level of the middle cerebellar peduncle in keeping with an acute infarct.",
|
| 47 |
+
"mri head: the ventricles and extra cerebral csf spaces are of normal size. no focal intracranial abnormality has been identified. conclusion: normal intracranial appearances"
|
| 48 |
+
]
|
| 49 |
+
|
| 50 |
+
for report in reports:
|
| 51 |
+
report_embedding = model.encode(report)
|
| 52 |
+
similarities = [util.cos_sim(t_emb, report_embedding).item() for t_emb in template_embeddings]
|
| 53 |
+
print(f"Max similarity to normal templates: {max(similarities):.3f}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
```
|
| 55 |
|
| 56 |
+
## Model Architecture
|
| 57 |
|
|
|
|
| 58 |
```
|
| 59 |
SentenceTransformer(
|
| 60 |
+
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with RobertaModel
|
| 61 |
+
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_mean_tokens': True})
|
| 62 |
)
|
| 63 |
```
|
| 64 |
|
| 65 |
+
## Citation
|
| 66 |
|
| 67 |
+
If you use NeuroBERT, please cite the associated paper.
|