--- license: creativeml-openrail-m --- This is an inpainting model, which has been converted from the [realisticVisionV51_v51VAE-inpainting](https://civitai.com/models/4201?modelVersionId=130090). How to load the model : ```python model_id = "sukkritsharma/realisticVisionV51_v51VAE-inpainting-onnx-fp16" pipe = OnnxStableDiffusionInpaintPipeline.from_pretrained(model_id,                                                              revision='fp16',                                                              provider="CUDAExecutionProvider",                                                             ) ``` How to run inference : ```python img = pipe(prompt=prompt, image=init_image, mask_image=mask_image, num_inference_steps=30).images[0] ```