Views
No views yet
mlx_embeddings.convert), group_size=641from mlx_embeddings import load
2
3model, tokenizer = load("majentik/harrier-oss-v1-0.6b-MLX-4bit")
4inputs = tokenizer(["query: what is Harrier-OSS?", "passage: Harrier-OSS is a text embedding model..."],
5 padding=True, truncation=True, return_tensors="mlx")
6outputs = model(inputs["input_ids"], attention_mask=inputs["attention_mask"])
7embeddings = outputs.text_embeds # L2-normalised
8print((embeddings[0] @ embeddings[1:].T).tolist())| Property | Value |
|---|---|
| Base Model | microsoft/harrier-oss-v1-0.6b |
| Backbone | Qwen3Model + sentence-transformers Dense heads |
| Parameters | 0.6B (pre-quantization) |
| Context Length | 32K |
| License | MIT |