--- license: creativeml-openrail-m tags: - text-to-image - safetensors - onnx - open-diffusion - od-v2 - openskyml language: - en - fr - ru pipeline_tag: text-to-image --- # Open Diffusion V2 Generate cool images with OpenDiffusion V2 (OD-v2) ## Model Details ### Model Description - **Developed by:** [OpenSkyML](https://huggingface.co/openskyml) - **Model type:** [Multimodal (Text-to-Image)](https://huggingface.co/models?pipeline_tag=text-to-image) - **License:** [CreativeML-Openrail-m](https://huggingface.co/models?license=license%3Acreativeml-openrail-m) ### Model Sources - **Repository:** [click](https://huggingface.co/ehristoforu/open-diffusion-v2/tree/main) - **Demo [optional]:** In developed ... ## Uses ### In Free Inference API: ```py import requests HF_READ_TOKEN = "..." API_URL = "/static-proxy?url=https%3A%2F%2Fapi-inference.huggingface.co%2Fmodels%2Fopenskyml%2Fopen-diffusion-v2" headers = {"Authorization": f"Bearer {HF_READ_TOKEN}"} def query(payload): response = requests.post(API_URL, headers=headers, json=payload) return response.content image_bytes = query({ "inputs": "Astronaut riding a horse", }) # You can access the image with PIL.Image for example import io from PIL import Image image = Image.open(io.BytesIO(image_bytes)) ``` ### In Spaces: ```py import gradio as gr gr.load("models/openskyml/open-diffusion-v2").launch() ```