An unmodified duplicate of
sentence-transformers/all-MiniLM-L6-v2, tagged for use with
ANEForge so the weights load and run directly on the
Apple Neural Engine (no CoreML). Weights are byte-identical to the source; see the original repo for
the model details. Licensed
apache-2.0 from the source.
1# pip install "aneforge[models]"
2from aneforge.sentence_transformers import SentenceTransformer
3
4model = SentenceTransformer("aneforge/all-MiniLM-L6-v2")
5emb = model.encode(["Hello from the Neural Engine"], normalize_embeddings=True)
ANEForge compiles the model's graph into a single ANE program and streams the weights from this repo
via
huggingface_hub. See the
docs and the
paper.