Fine-tuned
EmbeddingGemma-300M for personalized content scoring with
Sift.
This is a sentence embedding model fine-tuned on personal browsing labels collected with the Sift Chrome extension. It scores feed items (Hacker News, Reddit, X) against interest categories using cosine similarity, running entirely in the browser via
Transformers.js.
1import { pipeline } from "@huggingface/transformers";
2const extractor = await pipeline("feature-extraction", "shreyask/sift-finetuned", { dtype: "q4" });
3const output = await extractor("Your text here", { pooling: "mean", normalize: true });