Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks
Paper • 1908.10084 • Published • 13
How to use amin/medical_embedding_1 with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("amin/medical_embedding_1")
sentences = [
"What are the symptoms of Anomalies?",
"13 weeks menstrual age, there are three ossification centers in vertebrae C1 through L314 (Fig. 35.2). Neural arch ossification begins as a small focus at the base of the transverse process and extends simultaneously into the pedicle anteriorly and into the lamina posteriorly (Fig. 35.3). Ultrasound evaluation for spina bifida usually occurs between 16 and 22 weeks gestation. By 16 weeks, there is enough ossifica- tion in the neural arches to assess for spina bifida to level L5,15 by 19 weeks to level S1, and by 22 weeks to level S2 (Figs. 35.4 and 35.5). In some fetuses, there may be enough neural arch ossification to assess for spina bifida before these gestational ages. Braithwaite et al.16 assessed the fetal anatomy at 12 to 13 weeks gestation by a combination of transabdominal and transvaginal sonography and reported successful examination of the vertebrae and overlying skin in both the transverse and the coronal plane in all cases. Others have reported successful prenatal diagnosis of spina bifida at 12 to 14 weeks gestation on the basis of abnormal cranial findings.17-19 They caution that although the characteristic cranial findings may be present at 11 to 14 weeks, the prevalence of these findings in the first trimester remains to be determined (Table 35.2). Furthermore, closed NTDs are less likely to be associated with abnormal cranial findings and therefore are more difficult to detect in the first trimester. Normal Position of the Spinal Cord For fetuses at 19 to 33 weeks gestation, the conus medullaris is normally situated at level L2-L3 or higher (Fig. 35.6). Level L3 is taken to be indeterminate and L3-L4 or lower as abnormal.20 For those fetuses with tethered cord, the position of the conus CHAPTER 35 The Fetal Spine 1219 FIG. 35.2 Spine Ossification at 11 Weeks + 4 Days",
"Dorsiflexion of foot at ankle joint; inversion of foot; dynamic support of medial arch of foot Extensor hallucis longus Middle one-half of medial surface of fibula and adjacent surface of interosseous membrane Dorsal surface of base of distal phalanx of great toe Deep fibular nerve (L5, S1) Extension of great toe and dorsiflexion of foot Extensor digitorum longus Proximal one-half of medial surface of fibula and related surface of lateral tibial condyle Bases of distal and middle phalanges of lateral four toes Deep fibular nerve (L5, S1) Extension of lateral four toes and dorsiflexion of foot Fibularis tertius Distal part of medial surface of fibula Dorsomedial surface of base of metatarsal 5 Deep fibular nerve (L5, S1) Dorsiflexion and eversion of foot Modified from Drake, RL, Grays Anatomy for Students, 3rd ed, 2015, Churchill Livingstone, Elsevier. 7 137 Surface anatomy the soleus and the plantaris muscles (Fig. 7.14 and Table 7.6). These superficial muscles plantarflex the foot at the ankle joint. The gastrocnemius muscle is the most superficial muscle of the posterior calf and has two heads, the medial and lateral. Standing on tip toes makes the two heads of gastrocnemius more prominent and palpable. Distally, they converge to form the calcaneal tendon, or Achilles tendon, which can be observed toward its attachment on the calcaneus. The soleus muscle lies deep to the gas- trocnemius and also inserts into the calcaneal tendon. The soleus muscle can be palpated either side of the calcaneal tendon. The plantaris muscle is a small vestigial muscle with a long tendinous portion that passes between the soleus muscle and the gastrocnemius muscle. It cannot be palpated. The deep group of posterior compartment consists of the popliteus, flexor hallucis longus, flexor digitorum longus and tibialis posterior muscles (Table 7.6). Although these muscles are not palpable, their",
"recessive polycystic kidneys, autosomal dominant polycystic kidneys, Jeune asphyxiating thoracic dystrophy, Ellis-van Creveld syndrome, and others.115 Joubert Syndrome Joubert syndrome and related disorders (JSRD) have the key feature of molar tooth sign visible on MRI. The molar tooth appearance results from hypoplasia of the cerebellar vermis, horizontal thick elongated cerebral peduncles, and deep inter- peduncular fossa at upper pons; on axial MRI of the brainstem, these features look like a molar tooth. This sign is used as the diagnostic test in children. JSRD is clinically characterized by hypotonia, ataxia, psychomotor delay, irregular breathing, and abnormal eye movements and has an incidence of about 1 per 80,000 pregnancies. Different combinations of ciliary gene muta- tions can result in primary Joubert syndrome, and related disorders have variable abnormalities of the neurons, eye, renal tubules, and bile ducts and polydactyly.116 On ultrasound the molar tooth sign findings of vermian hypoplasia, thickened cerebral peduncles, and interpeduncular notch may be visible by 20 weeks and confirmed by MRI if needed.117 Additional cerebral imaging findings can include abnormalities of the corpus callosum and neuronal migrational abnormalities, Dandy-Walker malformation (DWM), and encephalocele as well as abnormalities in somatic structures. If the mutation is known (about 50%), early diagnosis is possible with chorionic villus sampling (CVS). Prognosis is generally poor and related to extent of breathing and feeding problems in the short term and renal and hepatic complications in the long term. Meckel-Gruber Syndrome Meckel-Gruber syndrome is likely the most common syndromic abnormality of the CNS and is characterized by occipital encephalocele, enlarged dysplastic kidneys, hepatic duct prolifera- tion, polydactyly, posterior fossa abnormalities, and craniofacial and heart defects and has features that overlap with JSRS. Incidence is 1 per 13,000 to 140,000 live births. It is a lethal autosomal recessive disorder associated with mutations in several ciliary genes."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]This is a sentence-transformers model finetuned from abhinand/MedEmbed-small-v0.1. 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.
SentenceTransformer(
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 384, '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})
(2): Normalize()
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'What are the symptoms of Presti?',
'the fetal chest, a four-chamber view of the heart is imaged. Note that the apex of the heart is pointing toward the left side of the fetal chest (Figs. 6.2 and 6.4). Determining that the stomach, descending aorta, and cardiac apex are located on the fetal left side and the inferior vena cava is located on the right side establishes normal visceral situs (Figs. 6.1 and 6.3). Figure 6.1: Schematic drawing of a cross section of the upper abdomen for the assessment of the abdominal situs. The vertical line divides this plane into right and left. The right-sided structures include the gallbladder, the portal sinus, a large part of the liver, and inferior vena cava (IVC). The left-sided structures include the descending aorta, the stomach, and the spleen. Figure 6.3 is the corresponding ultrasound plane. Figure 6.2: Determining fetal situs in longitudinal lie: In A, the fetus is in a cephalic presentation with the fetal spine close to the left uterine wall, resulting in the right side being anterior and left side posterior. In B, the fetus is in a cephalic presentation with the fetal spine close to the right uterine wall, resulting in the left side being anterior and right side posterior. In C, the fetus is in a breech presentation with the fetal spine close to the left uterine wall, resulting in the left side being anterior and right side posterior. In D, the fetus is in a breech presentation with the fetal spine close to the right uterine wall, resulting in the right side being anterior and left side posterior. Note the corresponding transverse ultrasound planes of the chest and abdomen. Blue arrows point to fetal stomach, red arrows to the apex of the heart, and yellow arrows to the descending aorta. See text for details. Several',
'diaphragmatic hernia has been reported.67,77,78 Although these malformations may be detected in the first trimester, visualization will depend on size, and continued growth may aid detection in the second trimester. In a randomized trial of routine 12-week anatomic survey versus routine 18-week anatomic survey, Saltvedt and colleagues detected 0% of the three diaphragmatic hernias in the 12-week group but 50% of four diaphragmatic hernias in the 18-week group, but this difference was not statistically signifi- cant because of the overall low prevalence of congenital diaphragmatic hernia in the cohort (7/36,108).78 Cardiac Disease Congenital heart disease is one of the most common severe congenital abnormalities, with a prevalence of 8/1000 live births.22,72,79,80 Over the past 2 decades, imaging of the fetal heart in the first trimester has evolved considerably to include full echocardiographic studies, with several authors reporting diagnosis of congenital heart disease in the first trimester22,30,79-81 (Fig. 5-23). In a retrospective study of 2165 sin- gleton pregnancies that underwent fetal echocardiogram from 1997 to 2003 Smrcek and colleagues reported the frequency of congenital heart malformations diagnosed between 11 and 13 weeks, with atrioven- tricular septal defects being the most frequent by about 4.5-fold (18/29), followed by ventricular septal defect (4/29), and tetralogy of Fallot (3/29).28 Additionally, ectopia cordis, hypoplastic left-sided and right-sided heart syndrome, double outlet right ventricle, transposi- tion of the great arteries, absence of the pulmonary valves, aortic ste- nosis, aortic coarctation, left and right atrial isomerism, pulmonary stenosis, truncus arteriosus, tricuspid atresia, and total anomalous pul- monary venous return have all been reported as either isolated findings or in combination as complex congenital heart disease.22,28,81-83 The majority of studies evaluating first trimester fetal cardiac evaluation have included a selected population referred for specialized fetal echo- cardiogram in which the indication most commonly was increased nuchal translucency but',
]
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]
EmbeddingSimilarityEvaluator| Metric | Value |
|---|---|
| pearson_cosine | 0.8767 |
| spearman_cosine | 0.6635 |
sentence_0, sentence_1, and label| sentence_0 | sentence_1 | label | |
|---|---|---|---|
| type | string | string | float |
| details |
|
|
|
| sentence_0 | sentence_1 | label |
|---|---|---|
What are the symptoms of Obstet Gynecol? |
Imaging Parameters The ACR practice parameters for the performance of ce-MR imaging were revised in 2013 and amended in 2014. Table 22.4 lists the performance guidelines by technical factor. For a facility to be accredited for breast MR, they have to follow the ACR guidelines, but specific protocols will vary across institutions. In addition, for ACR accreditation, they must be able to do mammographic correlation, breast US, and MR imagingguided procedures or have a relationship with a facility that can provide those services for them. MR imaging equipment specifications and performance must also meet all state and federal requirements. Patients are scanned in the prone position with the breasts hanging into a dedicated breast coil. Body coils should not be used for breast MR examinations. The breast should be imaged in axial or sagittal planes or a combination of the two. Core pulse sequences when evaluating the breast for cancer include a three-plane localizer, T1W images, T2W images... |
0.0 |
What is diagnosis? |
(CNS) organs should be per- formed for differential diagnosis among syndromes presenting with fetal skeletal anomalies. For example, congenital heart disease is a prominent feature of Ellisvan Creveld and Holt-Oram syndromes.252,253 Fetal Movements The normal pattern of fetal movements can be identified as early as 11 weeks of gestation through a detailed anatomic evaluation.254-257 Abnormal fetal movements can be observed in skeletal disorders involving joint contractures, neural muscular connective tissue disor- ders, amyoplasia (lack of muscle growth), vascular compromise, and anomalies of the spinal cord. The most frequent conditions associated with abnormal or absent fetal movements are fetal akinesia deforma- tion sequence (FADS) or Pena-Shokeir syndrome, and arthrogrypo- sis.258 In FADS there is a significant reduction in the amplitude, velocity, and complexity of fetal movements.259,260 In arthrogryposis, there is fixed position of the distal parts of the limbs and reduced ampl... |
1.0 |
What are the risk factors for Diagnostic Ultra? |
G, Bast C, Lenz F, Bollmann R. Doppler echocardiography of the main stems of the pulmonary arteries in the normal human fetus. Ultrasound Obstet Gynecol 1998;11: 1739 47. Roth P, Agnani G, Arbez Gindre F, Pauchard JY, Burguet A, Schaal JP, Maillet R. Use of energy color Doppler in visualizing fetal pulmonary vascularization to predict the absence of severe pulmonary hypoplasia Gynecol Obstet Invest 1998;46:1537 48. Chaoui R, Kalache K, Tennstedt C, Lenz F, Vogel M. Pulmonary arterial Doppler in fetuses with lung hypoplasia. Eur J Obstet Gynecol Reprod Biol 1999:84:17985 49. Yoshimura S, Masuzaki H, Miura K, Muta K, Gotoh H, Ishimaru T. Diagnosis of fetal pulmonary hypoplasia by measurement of blood flow velocity waveforms of pulmonary arteries with Doppler ultrasonography. Am J Obstet Gynecol 1999;180:4416 50. Sherer DM, Eglinton GS, Goncalves LF, Lewis KM, Queenan JT. Prenatal color and pulsed Doppler sonographic documentation of intrathoracic umbilical vein and ductus venosus, confir... |
0.0 |
ContrastiveLoss with these parameters:{
"distance_metric": "SiameseDistanceMetric.COSINE_DISTANCE",
"margin": 0.5,
"size_average": true
}
eval_strategy: stepsper_device_train_batch_size: 16per_device_eval_batch_size: 16multi_dataset_batch_sampler: round_robinoverwrite_output_dir: Falsedo_predict: Falseeval_strategy: stepsprediction_loss_only: Trueper_device_train_batch_size: 16per_device_eval_batch_size: 16per_gpu_train_batch_size: Noneper_gpu_eval_batch_size: Nonegradient_accumulation_steps: 1eval_accumulation_steps: Nonetorch_empty_cache_steps: Nonelearning_rate: 5e-05weight_decay: 0.0adam_beta1: 0.9adam_beta2: 0.999adam_epsilon: 1e-08max_grad_norm: 1num_train_epochs: 3max_steps: -1lr_scheduler_type: linearlr_scheduler_kwargs: {}warmup_ratio: 0.0warmup_steps: 0log_level: passivelog_level_replica: warninglog_on_each_node: Truelogging_nan_inf_filter: Truesave_safetensors: Truesave_on_each_node: Falsesave_only_model: Falserestore_callback_states_from_checkpoint: Falseno_cuda: Falseuse_cpu: Falseuse_mps_device: Falseseed: 42data_seed: Nonejit_mode_eval: Falseuse_ipex: Falsebf16: Falsefp16: Falsefp16_opt_level: O1half_precision_backend: autobf16_full_eval: Falsefp16_full_eval: Falsetf32: Nonelocal_rank: 0ddp_backend: Nonetpu_num_cores: Nonetpu_metrics_debug: Falsedebug: []dataloader_drop_last: Falsedataloader_num_workers: 0dataloader_prefetch_factor: Nonepast_index: -1disable_tqdm: Falseremove_unused_columns: Truelabel_names: Noneload_best_model_at_end: Falseignore_data_skip: Falsefsdp: []fsdp_min_num_params: 0fsdp_config: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}fsdp_transformer_layer_cls_to_wrap: Noneaccelerator_config: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}deepspeed: Nonelabel_smoothing_factor: 0.0optim: adamw_torchoptim_args: Noneadafactor: Falsegroup_by_length: Falselength_column_name: lengthddp_find_unused_parameters: Noneddp_bucket_cap_mb: Noneddp_broadcast_buffers: Falsedataloader_pin_memory: Truedataloader_persistent_workers: Falseskip_memory_metrics: Trueuse_legacy_prediction_loop: Falsepush_to_hub: Falseresume_from_checkpoint: Nonehub_model_id: Nonehub_strategy: every_savehub_private_repo: Nonehub_always_push: Falsegradient_checkpointing: Falsegradient_checkpointing_kwargs: Noneinclude_inputs_for_metrics: Falseinclude_for_metrics: []eval_do_concat_batches: Truefp16_backend: autopush_to_hub_model_id: Nonepush_to_hub_organization: Nonemp_parameters: auto_find_batch_size: Falsefull_determinism: Falsetorchdynamo: Noneray_scope: lastddp_timeout: 1800torch_compile: Falsetorch_compile_backend: Nonetorch_compile_mode: Noneinclude_tokens_per_second: Falseinclude_num_input_tokens_seen: Falseneftune_noise_alpha: Noneoptim_target_modules: Nonebatch_eval_metrics: Falseeval_on_start: Falseuse_liger_kernel: Falseeval_use_gather_object: Falseaverage_tokens_across_devices: Falseprompts: Nonebatch_sampler: batch_samplermulti_dataset_batch_sampler: round_robin| Epoch | Step | Training Loss | spearman_cosine |
|---|---|---|---|
| 0.4950 | 500 | 0.0094 | - |
| 0.5 | 505 | - | 0.6499 |
| 0.9901 | 1000 | 0.0052 | - |
| 1.0 | 1010 | - | 0.6607 |
| 1.4851 | 1500 | 0.0041 | - |
| 1.5 | 1515 | - | 0.6597 |
| 1.9802 | 2000 | 0.0035 | - |
| 2.0 | 2020 | - | 0.6632 |
| 2.4752 | 2500 | 0.003 | - |
| 2.5 | 2525 | - | 0.6631 |
| 2.9703 | 3000 | 0.0031 | - |
| 3.0 | 3030 | - | 0.6635 |
@inproceedings{reimers-2019-sentence-bert,
title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
author = "Reimers, Nils and Gurevych, Iryna",
booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
month = "11",
year = "2019",
publisher = "Association for Computational Linguistics",
url = "https://arxiv.org/abs/1908.10084",
}
@inproceedings{hadsell2006dimensionality,
author={Hadsell, R. and Chopra, S. and LeCun, Y.},
booktitle={2006 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR'06)},
title={Dimensionality Reduction by Learning an Invariant Mapping},
year={2006},
volume={2},
number={},
pages={1735-1742},
doi={10.1109/CVPR.2006.100}
}