You're looking at a specific version of this model. Jump to the model overview.

center-for-curriculum-redesign /bge_1-5_query_embeddings:438621ac

Input schema

The fields you can use to run this model with an API. If you don’t give a value for a field its default value will be used.

Field Type Default value Description
query_texts
string
[]
A serialized JSON array of strings you wish to generate *retreival* embeddings for. (note, that you should keep this list short to avoid Replicate response size limitations). Use this to embed short text queries intended for comparison against document text. A vector will be returned corresponding to each line of text in the input array (in order of input). This endpoint will automatically format your query strings for retrieval, you do not need to preprocess them.
normalize
boolean
True
normalizes returned embedding vectors to a magnitude of 1. (default: true, as this model presumes cosine similarity comparisons downstream)
batchtoken_max
number
200

Min: 0.5

You probably don't need to worry about this parameter if you're just getting the embeddings for a handful of queries. This parameter sets the maximumum number of kibiTokens (1 kibiToken = 1024 tokens) to try to stuff into a batch (to avoid out of memory errors but maximize throughput). If the total number of tokens across the flattened list of requested embeddings exceed this value, the list will be split internally and run across multiple forward passes. This will not affect the shape of your output, just the time it takes to run.
precision
string (enum)
full

Options:

full, half

numerical precision for inference computations. Either full or half. Defaults to a paranoid value of full. You may want to test if 'half' is sufficient for your needs, though regardless you should probably prefer to use the same precision for querying as you do for archiving.

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{'properties': {'extra_metrics': {'title': 'Extra Metrics', 'type': 'string'},
                'query_embeddings': {'items': {'items': {'type': 'number'},
                                               'type': 'array'},
                                     'title': 'Query Embeddings',
                                     'type': 'array'}},
 'required': ['query_embeddings', 'extra_metrics'],
 'title': 'Output',
 'type': 'object'}