Feature Extraction
Transformers.js
ONNX
sentence-transformers
bert
medical
on-device
text-embeddings-inference
Instructions to use evum/lab-marker-e5-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use evum/lab-marker-e5-small with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('feature-extraction', 'evum/lab-marker-e5-small'); - sentence-transformers
How to use evum/lab-marker-e5-small with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("evum/lab-marker-e5-small") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
File size: 1,238 Bytes
4413a9f 9cc49a9 4413a9f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | ---
license: mit
base_model: intfloat/multilingual-e5-small
library_name: transformers.js
tags: [sentence-transformers, feature-extraction, medical, on-device]
---
# evum/lab-marker-e5-small
A contrastive fine-tune of [multilingual-e5-small](https://huggingface.co/intfloat/multilingual-e5-small)
(MIT) for **lab-marker naming** in [Evum](https://github.com/) — it maps a lab-report label
(any language) to one of Evum's marker ids by embedding similarity. Runs **on-device** via
transformers.js; the user's health data never leaves the browser.
**Open weights, closed recipe:** the weights are public and the eval below is reproducible on
the open fixtures, but the training pipeline is proprietary.
## Eval (held-out fixtures, precision-first)
| model | precision | recall | threshold | margin |
|---|---|---|---|---|
| base multilingual-e5-small | 1.0 | 0.833 | 0.89 | 0.02 |
| **this model (q8 ONNX)** | 1.0 | 1.0 | 0.7 | 0 |
## Use
Feature-extraction; prefix report labels with `query: ` and marker names with `passage: `,
mean-pool, L2-normalize, cosine similarity. Names only — it never produces a measurement value.
## Limitations
Small fine-tune; a naming *fallback* behind a deterministic catalog. Not medical advice.
|