Listing Thumbnail

    voyage-large-2-instruct Embedding Model

     Info
    Sold by: Voyage AI 
    Deployed on AWS
    Free Trial
    Instruction-tuned general-purpose embedding model optimized for retrieval, classification, clustering, and reranking. 16K context length.

    Overview

    Text embedding models are neural networks that transform texts into numerical vectors. They are a crucial building block for semantic search/retrieval systems and retrieval-augmented generation (RAG) and are responsible for the retrieval quality. voyage-large-2-instruct is a cutting-edge general-purpose embedding model and is among the top in the overall MTEB leaderboard, outperforming OpenAI v3 large and Cohere English v3 on key tasks, such as retrieval, classification, clustering, and reranking. Further, voyage-large-2-instruct is trained to be responsive to additional instructions that are prepended to the input text. Latency is 90 ms for a single query with at most 100 tokens, and throughput is 12.6M tokens per hour at $0.22 per 1M tokens on an ml.g6.xlarge. Learn more about voyage-large-2-instruct here: https://blog.voyageai.com/2024/05/05/voyage-large-2-instruct-instruction-tuned-and-rank-1-on-mteb/ 

    Highlights

    • Superior general-purpose capability and is among the top in the overall [MTEB leaderboard](https://huggingface.co/spaces/mteb/leaderboard), outperforming OpenAI v3 large and Cohere English v3 on key tasks, such as retrieval, classification, clustering, and reranking.
    • Responsive to additional prepended instructions. For retrieval/search tasks (e.g., in RAG), use the `[input_type](https://docs.voyageai.com/docs/faq#when-and-how-should-i-use-the-input_type-parameter)` parameter. For classification, clustering, or other MTEB subtasks, please use the instructions [here](https://github.com/voyage-ai/voyage-large-2-instruct).
    • 16K token context length, well-suited for applications on long documents. Latency is 90 ms for a single query with at most 100 tokens. 12.6M tokens per hour at $0.22 per 1M tokens on an ml.g6.xlarge.

    Details

    Delivery method

    Latest version

    Deployed on AWS

    Unlock automation with AI agent solutions

    Fast-track AI initiatives with agents, tools, and solutions from AWS Partners.
    AI Agents

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Free trial

    Try this product free for 7 days according to the free trial terms set by the vendor.

    voyage-large-2-instruct Embedding Model

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (6)

     Info
    Dimension
    Description
    Cost/host/hour
    ml.m5.large Inference (Batch)
    Recommended
    Model inference on the ml.m5.large instance type, batch mode
    $0.00
    ml.g5.xlarge Inference (Real-Time)
    Recommended
    Model inference on the ml.g5.xlarge instance type, real-time mode
    $2.112
    ml.g5.8xlarge Inference (Real-Time)
    Model inference on the ml.g5.8xlarge instance type, real-time mode
    $4.59
    ml.g5.2xlarge Inference (Real-Time)
    Model inference on the ml.g5.2xlarge instance type, real-time mode
    $2.2725
    ml.g5.4xlarge Inference (Real-Time)
    Model inference on the ml.g5.4xlarge instance type, real-time mode
    $3.045
    ml.g5.16xlarge Inference (Real-Time)
    Model inference on the ml.g5.16xlarge instance type, real-time mode
    $7.68

    Vendor refund policy

    Refunds to be processed under the conditions specified in EULA. Please contact contact@voyageai.com  for further assistance.

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Amazon SageMaker model

    An Amazon SageMaker model package is a pre-trained machine learning model ready to use without additional training. Use the model package to create a model on Amazon SageMaker for real-time inference or batch processing. Amazon SageMaker is a fully managed platform for building, training, and deploying machine learning models at scale.

    Deploy the model on Amazon SageMaker AI using the following options:
    Deploy the model as an API endpoint for your applications. When you send data to the endpoint, SageMaker processes it and returns results by API response. The endpoint runs continuously until you delete it. You're billed for software and SageMaker infrastructure costs while the endpoint runs. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Deploy models for real-time inference  .
    Deploy the model to process batches of data stored in Amazon Simple Storage Service (Amazon S3). SageMaker runs the job, processes your data, and returns results to Amazon S3. When complete, SageMaker stops the model. You're billed for software and SageMaker infrastructure costs only during the batch job. Duration depends on your model, instance type, and dataset size. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Batch transform for inference with Amazon SageMaker AI  .
    Version release notes

    We are excited to announce the initial release of voyage-large-2-instruct.

    Additional details

    Inputs

    Summary
    1. input: str or List[str] - Single text or list of texts.
    2. input_type: str, optional (default=None) - May also be "query" or "document".
    3. truncation: bool, optional (default=True) - True: Truncates. False: raises error if any given text exceeds the context length.
    4. encoding_format: str, optional (default=None) - Embedding format. None: float list; "base64": compressed encoding.
    Limitations for input type
    The maximum number of tokens for each text is 16K, the maximum length of the list is 128, and the total number of tokens in the list is at most 32K.
    Input MIME type
    text/csv, application/json, application/jsonlines
    https://github.com/voyage-ai/voyageai-aws/blob/main/sample_embedding_input.json
    https://github.com/voyage-ai/voyageai-aws/blob/main/sample_batch_input_embedding.jsonl

    Input data descriptions

    The following table describes supported input data fields for real-time inference and batch transform.

    Field name
    Description
    Constraints
    Required
    input
    A single text string, or a list of texts as a list of strings.
    Type: FreeText Limitations: The maximum number of tokens for each text is 16K, the maximum length of the list is 128, and the total number of tokens in the list is at most 32K.
    Yes
    input_type
    Type of the input text. Default to None. Other options: "query", "document".
    Default value: None Type: FreeText
    No
    truncation
    Whether to truncate the input texts to fit within the context length. - If True, over-length input texts will be truncated to fit within the context length. - If False, an error will be raised if any given text exceeds the context length.
    Default value: True Type: Categorical Allowed values: True, False
    No
    encoding_format
    Format in which the embeddings are encoded. We currently support two options: - None (default): the embeddings are represented as lists of floating-point numbers; - "base64": the embeddings are compressed to Base64 encodings.
    Default value: None Type: Categorical Allowed values: base64, None
    No

    Support

    Vendor support

    Please email us at contact@voyageai.com  for inquiries and customer support. Join our Discord channel: https://discord.gg/zAU7GQEmvT 

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.