metadata
base_model: stabilityai/stable-diffusion-3.5-large-turbo
language:
- en
license: other
license_name: stabilityai-ai-community
license_link: LICENSE.md
pipeline_tag: text-to-image
tags:
- text-to-image
- stable-diffusion
- diffusers
- openvino
- nncf
- fp16
inference: true
extra_gated_prompt: >-
By clicking "Agree", you agree to the [License
Agreement](https://huggingface.co/stabilityai/stable-diffusion-3.5-large-turbo/blob/main/LICENSE.md)
and acknowledge Stability AI's [Privacy
Policy](https://stability.ai/privacy-policy).
extra_gated_fields:
Name: text
Email: text
Country: country
Organization or Affiliation: text
Receive email updates and promotions on Stability AI products, services, and research?:
type: select
options:
- 'Yes'
- 'No'
What do you intend to use the model for?:
type: select
options:
- Research
- Personal use
- Creative Professional
- Startup
- Enterprise
I agree to the License Agreement and acknowledge Stability AI's Privacy Policy: checkbox
This model is a quantized version of stabilityai/stable-diffusion-3.5-large-turbo
and is converted to the OpenVINO format. This model was obtained via the nncf-quantization space with optimum-intel.
First make sure you have optimum-intel
installed:
pip install optimum[openvino]
To load your model you can do as follows:
from optimum.intel import OVPipelineForText2Image
model_id = "AIFunOver/stable-diffusion-3.5-large-turbo-openvino-fp16"
model = OVPipelineForText2Image.from_pretrained(model_id)