Sentence Similarity
sentence-transformers
TensorBoard
Safetensors
roberta
feature-extraction
Generated from Trainer
dataset_size:1000
loss:MultipleNegativesRankingLoss
Eval Results (legacy)
text-embeddings-inference
Instructions to use aisuko/distilroberta-pubmed-embeddings with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use aisuko/distilroberta-pubmed-embeddings with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("aisuko/distilroberta-pubmed-embeddings") sentences = [ "Does use of modified multiband ligator facilitate circumferential EMR in Barrett 's esophagus ( with video )?", "To analyse the relationship between mast cells and vascularisation in pterygia and to determine whether mast cells play an important role in the vascularisation of pterygia through the secretion of vascular endothelial growth factor (VEGF). Fifty-two pterygia and forty-four normal conjunctiva samples were obtained. Formalin-fixed, paraffin wax-embedded tissues were analysed by immunohistochemistry with CD31 and VEGF antibodies. Dual-immunofluorescence was used to see the location of mast cells and microvessels. To prove that mast cells have the function of secreting VEGF, we used dual-immunofluorescence, toluidine blue stain and immunohistochemisty study. Mast cells are located near the microvessels. The numbers of mast cells in pterygia (10.8 ± 2.7) were significantly higher compared with those in conjunctiva (4.7 ± 2.4, p<0.01). The numbers of microvessels in pterygia (20.7 ± 5.4) were also significantly higher than those in conjunctiva (9.3 ± 2.9, p<0.01). There was an association between mast cell count and microvessel density in pterygia (r=0.77, p<0.001). The cells were positive for toluidine blue staining and could express VEGF through a serial section stain. Dual-immunofluorescence showed that VEGF and mast cell tryptase (MCT) were expressed in the same cell.", "Various techniques are available for EMR in the upper- and lower-GI tract. For early cancers of the esophagus, the \"suck and cut\" technique, which uses a transparent cap or variceal band ligator, is the most commonly practiced method. To facilitate multiple or circumferential EMR, a modified multiband variceal ligator (MBL) is introduced, which allows sequential banding and snare resection without the need to withdraw the endoscope. To study the feasibility of modified MBL device in facilitating circumferential EMR of Barrett's esophagus (BE) that contains high-grade intraepithelial neoplasia (HGIN) and/or intramucosal cancer (IMC). To enable band delivery with a snare inserted in the therapeutic endoscope, the threading channel of the cranking device is enlarged from 2 to 3.2 mm. The 6-shooter MBL was used. Ten consecutive patients (all men; median age, 62 years; range 43-82 years) with BE were treated. IMC and HGIN were found in 8 and 2 patients, respectively. EMR was performed with pure coagulating current when using a 1.5 x 2.5-cm mini hexagonal polypectomy snare. No submucosal saline solution injection was performed before resection. In 5 of 10 patients with circumferential BE of 2 to 9 cm in length (median, 4 cm), complete circumferential EMR was performed in 1 session by using 3 to 18 bands (median, 6). Four patients with 3- to 10-cm (median, 4 cm) long segment BE required 2 to 5 sessions (median, 3) with a total of 5 to 42 bands (median, 12). Another patient with multifocal HGIN and/or IMC in 24 of a total of 49 specimens was finally recommended for surgery because of technical difficulties caused by mural thickening after 4 sessions. No serious procedure-related complications were observed, except for 2 minor bleedings, which were controlled endoscopically. Seven patients developed strictures after circumferential EMR. All patients except 1 were successfully managed by weekly bougienage after a median of 5 sessions (range 3-11). Deep-wall tears developed in 1 patient during the fourth bougienage session, for which limited distal esophageal resection was performed with an uneventful outcome.", "Weight gain after kidney transplantation (Tx) is considered a risk factor for poor outcomes. Increased oxidative stress is associated with not only chronic renal disease and Tx, but also obesity and cardiovascular disease. The aim of this pilot study was to test whether oxidative stress is related to weight gain at 12-months after kidney Tx and to obtain preliminary insight into potential mechanisms involved. Recipients (n=33) were classified into two groups; weight loss and weight gain, based on their weight changes at 12-months post-transplant. Total antioxidant capacity (TAOC) and lipid peroxidation (TBARS) were measured to evaluate oxidative stress from plasma at baseline and 12-months. A secondary data analysis was conducted to identify potential gene regulation. Seventeen recipients lost (-6.63±5.52kg), and sixteen recipients gained weight (8.94±6.18kg). TAOC was significantly decreased at 12-months compared to baseline for the total group, however, there was no significant difference between groups at either time point. TBARS was higher in weight gain group, at both time points, and it was significantly higher at 12-months (p=0.012). Gene expression profiling analysis showed that 7 transcripts annotated to reactive oxygen species related genes in adipose tissue were expressed significantly lower in weight gain group at baseline, which might be a negative feedback mechanism to reduce oxidative stress." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Notebooks
- Google Colab
- Kaggle
Welcome to the community
The community tab is the place to discuss and collaborate with the HF community!