| license: creativeml-openrail-m | |
| base_model: segmind/tiny-sd | |
| datasets: | |
| - recastai/LAION-art-EN-improved-captions | |
| tags: | |
| - stable-diffusion | |
| - stable-diffusion-diffusers | |
| - text-to-image | |
| - diffusers | |
| - openvino | |
| - openvino-export | |
| inference: true | |
| pipeline_tag: text-to-image | |
| This model was converted to OpenVINO from [`segmind/tiny-sd`](https://huggingface.co/segmind/tiny-sd) using [optimum-intel](https://github.com/huggingface/optimum-intel) | |
| via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space. | |
| First make sure you have optimum-intel installed: | |
| ```bash | |
| pip install optimum[openvino] | |
| ``` | |
| To load your model you can do as follows: | |
| ```python | |
| from optimum.intel import OVDiffusionPipeline | |
| model_id = "turingevo/tiny-sd-openvino" | |
| model = OVDiffusionPipeline.from_pretrained(model_id) | |
| ``` | |