Skip to content

LittleLittleCloud/Torchsharp-stable-diffusion-2

Repository files navigation

Torchsharp Stable Diffusion 2

This repo contains a torchsharp implementation for stable diffusion 2 model.

Quick Start

To run the stable diffusion 2 model on your local machine, the following prerequisites are required:

  • dotnet 6
  • git lfs, this is to download the model file from hugging face

Step 1: Get the model weight from huggingface

To get stable-diffusion-2 model weight, run the following command to download model weight from huggingface. Be sure to have git lfs installed.

git clone https://huggingface.co/stabilityai/stable-diffusion-2

Note

To load fp32 model weight into GPU, it's recommended to have at least 16GB of GPU memory if you want to generate 768 * 768 size image. Loading fp16 model weight requires around 8GB of GPU memory.

Step 2: Run the model

Clone this repo and replace the modelFolder folder with where you download huggingface model weight in Program.cs

Then run the following command to start the model:

dotnet run

Example output

a photo of an astronaut riding a horse on mars (a photo of an astronaut riding a horse on mars)

Load fp16 model weight for faster and more GPU memory efficient inference

You can load fp16 model weight by setting dtype to ScalarType.Float16 in Program.cs. The inference on fp16 model weight is faster and more GPU memory efficient.

Note

fp16 model only work with GPU because some operators doesn't work with fp16 and cpu.

Update log

Update on 2024/04/03

  • Add support for loading fp16 model weight

See also

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages