A
sentence-transformers/all-MiniLM-L6-v2 model fine-tuned on medical text for the
HealthMate-AI project (a medical RAG chatbot). This checkpoint is the
ensemble (weight average) of 3 cross-validation folds trained on medical domain data.
Maps sentences and paragraphs to a 384-dimensional dense vector space for semantic search and retrieval over medical documents.
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("yogvidwankhede/healthmate-minilm-l6-v2-medical-3fold")
4embeddings = model.encode([
5 "What are the symptoms of type 2 diabetes?",
6 "Metformin is a first-line medication for type 2 diabetes.",
7])
8print(embeddings.shape) # (2, 384)
Embedding/retrieval component of a medical RAG system. Research/educational use. Not a substitute for professional medical advice.