Model reference · open weights

changAI-nomic-embed-text-finetuned

Available as managed deployment Embeddings hyrinmansoor · community Embeddings 1 variants 3k dl/mo

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 byhyrinmansoor
TypeEmbedding models
TaskEmbeddings
Parameters (lead)149M
Context8k tokens
Runs withsentence-transformers
Based onhyrinmansoor/changAI-nomic-embed-text-v1.5-finetuned
Released2025-11-24
Popularity3k downloads / month
LicenceUnknown

About

What changAI-nomic-embed-text-finetuned is

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.

Read the full model card

Model Details

Model Description

Model Sources

Full Model Architecture

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({})
)

Usage

Direct Usage (Sentence Transformers)

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]])

Training Details

Training Dataset

Unnamed Dataset
  • Size: 262,905 training samples
  • Columns: anchor, positive, qid, and module
  • Approximate statistics based on the first 1000 samples:
    anchorpositiveqidmodule
    typestringstringstringstring
    detailsmin: 7 tokensmean: 16.09 tokensmax: 45 tokensmin: 6 tokensmean: 28.94 tokensmax: 71 tokensmin: 5 tokensmean: 6.44 tokensmax: 8 tokensmin: 3 tokensmean: 3.97 tokensmax: 5 tokens
  • Samples:
    anchorpositiveqidmodule
    how many days has the work order WO-999 been open?[FIELD] name | [TABLE] tabWork Order | desc: Unique identifier for the production order.Manufacturing_931Manufacturing
    Whats the total amount invoiced for product XYZ?[FIELD] item_code | [TABLE] tabInvoice Item | desc: Code of the item on the invoice line.Selling_2982Selling
    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_233Quality Management
  • Loss: CachedMultipleNegativesRankingLoss with these parameters:
    {
        "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

Call it like any OpenAI endpoint

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.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms