Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

BiliSakura
/
RS-Painter-Diffusers

Image-to-Image
Diffusers
Safetensors
StableDiffusionInpaintPipeline
stable-diffusion
remote-sensing
semantic-segmentation
diffusion-models
few-shot
sat-imagery
StableDiffusionInpaintPipeline
Model card Files Files and versions
xet
Community

Instructions to use BiliSakura/RS-Painter-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Diffusers

    How to use BiliSakura/RS-Painter-Diffusers with Diffusers:

    pip install -U diffusers transformers accelerate
    import torch
    from diffusers import AutoPipelineForInpainting
    from diffusers.utils import load_image
    
    # switch to "mps" for apple devices
    pipe = AutoPipelineForInpainting.from_pretrained("BiliSakura/RS-Painter-Diffusers", dtype=torch.float16, variant="fp16", device_map="cuda")
    
    img_url = "https://raw.githubusercontent.com/CompVis/latent-diffusion/main/data/inpainting_examples/overture-creations-5sI6fQgYIuo.png"
    mask_url = "https://raw.githubusercontent.com/CompVis/latent-diffusion/main/data/inpainting_examples/overture-creations-5sI6fQgYIuo_mask.png"
    
    image = load_image(img_url).resize((1024, 1024))
    mask_image = load_image(mask_url).resize((1024, 1024))
    
    prompt = "a tiger sitting on a park bench"
    generator = torch.Generator(device="cuda").manual_seed(0)
    
    image = pipe(
      prompt=prompt,
      image=image,
      mask_image=mask_image,
      guidance_scale=8.0,
      num_inference_steps=20,  # steps between 15 and 30 work well for us
      strength=0.99,  # make sure to use `strength` below 1.0
      generator=generator,
    ).images[0]
  • Notebooks
  • Google Colab
  • Kaggle
RS-Painter-Diffusers / vae
335 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
BiliSakura's picture
BiliSakura
Upload RS-Painter model files
b5808b4 verified 5 months ago
  • config.json
    801 Bytes
    Upload RS-Painter model files 5 months ago
  • diffusion_pytorch_model.safetensors
    335 MB
    xet
    Upload RS-Painter model files 5 months ago