Listing Thumbnail

    Stable Diffusion XL Beta 0.9

     Info
    Deployed on AWS
    Get a preview of SDXL from Stability AI, the leading model for creating and editing images.

    Overview

    SDXL Beta 0.9 offers a preview to the largest open source image model from Stability AI. SDXL produces high resolution images at native 1024px resolution. With SDXL Beta 0.9, Stability introduces a brand new 2-stage architecture for image generative AI models, and integrates the largest CLIP model. The result: stunning quality in image generation with minimal need for prompt engineering.

    Highlights

    • The foundation model for images: All text to image, image to image, inpainting, and outpainting workflows are handled by the official SDXL model. SDXL introduces a new SOTA architecture for image generation, comprising a 3.5B parameter base model stage and a 6.6B parameter ensemble pipeline.
    • Unprecedented quality and ease of use: Native 1024x1024 image generation with cinematic photorealism and fine detail. The most advanced text generation within images. Fine-tuned to create complex compositions with basic natural language prompting, thanks to the largest CLIP model in production.
    • Beta: SDXL 0.9 is a beta version of SDXL 1.0. While it is a powerful image generation model, for increased professionalism in image output, consider using SDXL 1.0

    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

    Stable Diffusion XL Beta 0.9

     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 (5)

     Info
    Dimension
    Description
    Cost
    ml.g4dn.12xlarge Inference (Batch)
    Recommended
    Model inference on the ml.g4dn.12xlarge instance type, batch mode
    $0.00/host/hour
    ml.g5.2xlarge Inference (Real-Time)
    Recommended
    Model inference on the ml.g5.2xlarge instance type, real-time mode
    $0.00/host/hour
    ml.p4de.24xlarge Inference (Real-Time)
    Model inference on the ml.p4de.24xlarge instance type, real-time mode
    $0.00/host/hour
    ml.p4d.24xlarge Inference (Real-Time)
    Model inference on the ml.p4d.24xlarge instance type, real-time mode
    $0.00/host/hour
    inference.count.m.i.c Inference Pricing
    inference.count.m.i.c Inference Pricing
    $0.00/request

    Vendor refund policy

    n/a

    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

    This release resolves a bug with mask image inputs.

    Additional details

    Inputs

    Summary

    This model accepts JSON input aligned with the Stability REST API  as well as protocol buffers aligned with the Stability GRPC API .

    Limitations for input type
    Input images must be base64 encoded in JSON or supplied via protobuf.
    Input MIME type
    application/json, application/x-protobuf
    { "cfg_scale": 7, "height": 1024, "width": 1024, "steps": 50, "seed": 42, "sampler": "K_DPMPP_2M", "text_prompts": [ { "text": "A photograph of fresh pizza with basil and tomatoes, from a traditional oven", "weight": 1 }] }
    https://platform.stability.ai

    Input data descriptions

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

    Field name
    Description
    Constraints
    Required
    height
    The height of the image in pixels. Must be a multiple of 64. On p4d/p4de instances, resolutions values are unlocked and only limited by GPU memory. On g5 instances, optimized native resolutions are limited to: 1024x1024 1152x896 / 896x1152 1216x832 / 832x1216 1344x768 / 768x1344 1536x640 / 640x1536 Lower resolutions than native will be cropped. Higher resolutions will result in an error.
    Default value: 1024 Type: Integer
    No
    width
    The width of the image in pixels. Must be a multiple of 64. On p4d/p4de instances, resolutions values are unlocked and only limited by GPU memory. On g5 instances, optimized native resolutions are limited to: 1024x1024 1152x896 / 896x1152 1216x832 / 832x1216 1344x768 / 768x1344 1536x640 / 640x1536 Lower resolutions than native will be cropped. Higher resolutions will result in an error.
    Default value: 1024 Type: Integer
    No
    text_prompts
    An array of text prompts to use for generation. Given a text prompt with the text A lighthouse on a cliff and a weight of 0.5, it would be represented as: "text_prompts": [ { "text": "A lighthouse on a cliff", "weight": 0.5 } ]
    Type: FreeText Limitations: Structured JSON array of prompts.
    Yes
    cfg_scale
    How strictly the diffusion process adheres to the prompt text (higher values keep your image closer to your prompt)
    Default value: 7 Type: Continuous Minimum: 0 Maximum: 35
    No
    sampler
    Which sampler to use for the diffusion process.
    Default value: auto Type: Categorical Allowed values: DDIM,DDPM,K_DPMPP_SDE,K_DPMPP_2M,K_DPMPP_2S_ANCESTRAL,K_DPM_2,K_DPM_2_ANCESTRAL,K_EULER,K_EULER_ANCESTRAL,K_HEUN,K_LMS
    No
    seed
    Random noise seed (omit this option or use 0 for a random seed)
    Default value: 0 Type: Integer
    No
    style_preset
    Pass in a style preset to guide the image model towards a particular style. This list of style presets is subject to change.
    Default value: none Type: Categorical Allowed values: enhance,anime,photographic,digital-art,comic-book,fantasy-art,line-art,analog-film,neon-punk,isometric,low-poly,origami,modeling-compound,cinematic,3d-model,pixel-art,tile-texture
    No
    steps
    Number of diffusion steps to run.
    Default value: 30 Type: Integer Minimum: 10 Maximum: 150
    No

    Support

    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.

    Similar products

    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.