From 40828df66313c9b3049dfe940ff5f6af83876507 Mon Sep 17 00:00:00 2001 From: Rainer Bernhardt Date: Sun, 2 Oct 2022 18:43:42 +0200 Subject: [PATCH] missing flag in wget download example The documentation shows a wget command to download the gfpgan files and was missing the `-P` flag --- docs/features/UPSCALE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/UPSCALE.md b/docs/features/UPSCALE.md index 6f720826ac..10f7c375d7 100644 --- a/docs/features/UPSCALE.md +++ b/docs/features/UPSCALE.md @@ -31,7 +31,7 @@ into **src/gfpgan/experiments/pretrained_models**. On Mac and Linux systems, here's how you'd do it using **wget**: ```bash -wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth src/gfpgan/experiments/pretrained_models/ +wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth -P src/gfpgan/experiments/pretrained_models/ ``` Make sure that you're in the InvokeAI directory when you do this.