From 8c7719fe9ae7d201b7aa32958e3fdd36905d3545 Mon Sep 17 00:00:00 2001 From: Plamen Minev Date: Sat, 23 Nov 2024 05:46:00 +0200 Subject: [PATCH] fix: typo in clip-g encoder arg (#472) --- examples/cli/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cli/main.cpp b/examples/cli/main.cpp index 1f33547..869b991 100644 --- a/examples/cli/main.cpp +++ b/examples/cli/main.cpp @@ -183,7 +183,7 @@ void print_usage(int argc, const char* argv[]) { printf(" -m, --model [MODEL] path to full model\n"); printf(" --diffusion-model path to the standalone diffusion model\n"); printf(" --clip_l path to the clip-l text encoder\n"); - printf(" --clip_g path to the clip-l text encoder\n"); + printf(" --clip_g path to the clip-g text encoder\n"); printf(" --t5xxl path to the the t5xxl text encoder\n"); printf(" --vae [VAE] path to vae\n"); printf(" --taesd [TAESD_PATH] path to taesd. Using Tiny AutoEncoder for fast decoding (low quality)\n");