From f8bd1e9d784e4b533be5e523a01ab7ffbf2bec1f Mon Sep 17 00:00:00 2001 From: Chris Hayes <6013871+Christopher-Hayes@users.noreply.github.com> Date: Wed, 28 Sep 2022 17:09:25 -0400 Subject: [PATCH] Update UPSCALE.md code block markdown Remove leading ">" to allow users to copy-paste the CLI command without issue. --- docs/features/UPSCALE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/features/UPSCALE.md b/docs/features/UPSCALE.md index 381d2b90ec..081e718a03 100644 --- a/docs/features/UPSCALE.md +++ b/docs/features/UPSCALE.md @@ -14,9 +14,9 @@ For **GFPGAN** to work, there is one additional step needed. You will need to do copy the GFPGAN [models file](https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth) into **src/gfpgan/experiments/pretrained_models**. On Mac and Linux systems, here's how you'd do it using **wget**: -~~~~ -> wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth -P src/gfpgan/experiments/pretrained_models/ -~~~~ +```bash +wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth -P src/gfpgan/experiments/pretrained_models/ +``` Make sure that you're in the stable-diffusion directory when you do this.