From 776c9f1293952e216f592ba11fb987e7a2894f21 Mon Sep 17 00:00:00 2001 From: Roger Condori <114810545+R3gm@users.noreply.github.com> Date: Tue, 21 Nov 2023 19:02:59 -0400 Subject: [PATCH] installation --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 75014ab..f77c3d1 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,11 @@ The goal of this project is to make Stable Diffusion more accessible, simple and easy-to-use with python. Stablepy is constructed on top of the Diffusers library +**Installation:** +``` +pip install stablepy==0.3.0 +``` + **Usage:** To use the project, simply create a new instance of the `Model_Diffusers` class. This class takes several arguments, including the path to the Stable Diffusion model file and the task name. @@ -41,6 +46,7 @@ image, path_image = model( img_height = 1024, upscaler_model_path = "./upscaler/RealESRGAN_x4plus_anime_6B.pth", upscaler_increases_size = 1.5, + hires_steps = 25, ) image[0]