Model reference · open weights
changAI-nomic-embed-text-finetuned is an open-weight embedding model from hyrinmansoor. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | hyrinmansoor |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 149M |
| Context | 8k tokens |
| Runs with | sentence-transformers |
| Based on | hyrinmansoor/changAI-nomic-embed-text-v1.5-finetuned |
| Released | 2025-11-24 |
| Popularity | 3k downloads / month |
| Licence | Unknown |
About
This is a sentence-transformers model finetuned from hyrinmansoor/changAI-nomic-embed-text-v1.5-finetuned. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for retrieval.
SentenceTransformer(
(0): Transformer({'transformer_task': 'feature-extraction', 'modality_config': {'text': {'method': 'forward', 'method_output_name': 'last_hidden_state'}}, 'module_output_name': 'token_embeddings', 'architecture': 'ModernBertModel'})
(1): Pooling({'embedding_dimension': 768, 'pooling_mode': 'mean', 'include_prompt': True})
(2): Normalize({})
)
First install the Sentence Transformers library:
pip install -U sentence-transformers
Then you can load this model and run inference.
from sentence_transformers import SentenceTransformer
# Download from the 🤗 Hub
model = SentenceTransformer("sentence_transformers_model_id")
# Run inference
sentences = [
'revenue from warenty claim items vs non-claimed lst yr',
'[FIELD] item_code | [TABLE] tabWarranty Claim | desc: links to the Item master; identifies the product subject to a warranty claim',
'Support_027',
]
embeddings = model.encode(sentences)
print(embeddings.shape)
# [3, 768]
# Get the similarity scores for the embeddings
similarities = model.similarity(embeddings, embeddings)
print(similarities)
# tensor([[ 1.0000, 0.6816, -0.0659],
# [ 0.6816, 1.0000, 0.0028],
# [-0.0659, 0.0028, 1.0000]])
| anchor | positive | qid | module | |
|---|---|---|---|---|
| type | string | string | string | string |
| details | min: 7 tokensmean: 16.09 tokensmax: 45 tokens | min: 6 tokensmean: 28.94 tokensmax: 71 tokens | min: 5 tokensmean: 6.44 tokensmax: 8 tokens | min: 3 tokensmean: 3.97 tokensmax: 5 tokens |
| anchor | positive | qid | module |
|---|---|---|---|
| how many days has the work order WO-999 been open? | [FIELD] name | [TABLE] tabWork Order | desc: Unique identifier for the production order. | Manufacturing_931 | Manufacturing |
| Whats the total amount invoiced for product XYZ? | [FIELD] item_code | [TABLE] tabInvoice Item | desc: Code of the item on the invoice line. | Selling_2982 | Selling |
| Which quality meetings are missing their corrective actions? | [FIELD] quality_meeting | [TABLE] tabQuality Action | desc: Links a quality action item back to the specific quality meeting where it was generated; if NULL for a meeting, indicates no actions were planned for it. | Quality Management_233 | Quality Management |
{
"scale": 20.0,
"similarity_fct": "cos_sim",
"mini_batch_size": 4,
"gather_across_devices": false,
"directions": [
"query_to_doc"
],
"partition_mode": "joint",
"hardness_mode":
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys changai-nomic-embed-text-finetuned for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (changai-nomic-embed-text-finetuned below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"changai-nomic-embed-text-finetuned","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.