Views
No views yet
1from sentence_transformers import SentenceTransformer
2
3# Load this model
4model = SentenceTransformer("pankajrajdeo/bioforge-namedropper-owl")
5
6# Encode medical text
7sentences = [
8 "Type 2 diabetes mellitus",
9 "Myocardial infarction"
10]
11
12embeddings = model.encode(sentences)
13print(embeddings.shape) # (2, 384)pankajrajdeo/bioforge-stage1a-pubmedpankajrajdeo/bioforge-stage1b-clinical-trialspankajrajdeo/bioforge-stage1c-umlspankajrajdeo/bioforge-namedropper-owlpankajrajdeo/bioforge-stage4-mixed1@software{bioforge2025,
2 author = {Pankaj Rajdeo},
3 title = {BioForge: Progressive Biomedical Sentence Embeddings},
4 year = {2025},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/pankajrajdeo/bioforge-namedropper-owl},
7 note = {Stage 3b}
8}