--- language: - en license: creativeml-openrail-m tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers inference: true --- Diffuser model for this SD checkpoint: https://civitai.com/models/80515/hrahyperrealism-art **emilianJR/HRA_hyperrealism_art** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**. Examples | Examples | Examples ---- | ---- | ---- ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/57a93272-f14e-4252-b6c4-485264e07a9d/width=450/194806-2023-06-03-20230603034324-640-896.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/07069db6-0ec5-4d96-a9ac-cc3c8501a1d8/width=450/194800-2023-06-03-20230603034105-640-896.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/a3682d16-7fd3-4e7d-8698-e9c51dcdcbb6/width=450/194705-2023-06-03-20230603030320-640-896.jpeg) ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/23d67259-0a4f-4168-af5d-feeeffcf8101/width=450/194799-2023-06-03-20230603034104-640-896.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/1dff82b9-748e-477f-b0f3-f2b9860aa093/width=450/194790-2023-06-03-20230603033734-640-896.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/43d23920-55db-4c6b-abd6-33cdacb6d4eb/width=450/194690-2023-06-03-20230603025728-640-896.jpeg) ------- ## 🧨 Diffusers This model can be used just like any other Stable Diffusion model. For more information, please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion). ```python from diffusers import StableDiffusionPipeline import torch model_id = "emilianJR/HRA_hyperrealism_art" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "YOUR PROMPT" image = pipe(prompt).images[0] image.save("image.png") ``` ## License This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies: [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)