Views
No views yet
naver/splade-v3-distilbert for Apple Silicon,
produced by NomaDamas/SPLADE-mlx.safetensors
(parameter re-mapping, cast to bfloat16). No training or fine-tuning was performed.1from splade_mlx import load
2import mlx.core as mx
3
4model, tok = load("NomaDamas/splade-v3-distilbert-mlx")
5enc = tok(["what causes vitamin d deficiency"], return_tensors="np", padding=True)
6sparse = model.encode(mx.array(enc["input_ids"]), mx.array(enc["attention_mask"])) # (1, 30522)dtype="float32" for this pre-converted repository: its declared stored
dtype is bfloat16. Load the upstream naver/splade-v3-distilbert checkpoint to create an fp32 conversion.NomaDamas/Splade_PP_en_v1-mlx (Apache-2.0).