From 546519c855760bc489409d1ba73b32b23ae58221 Mon Sep 17 00:00:00 2001 From: Ville Sundell Date: Thu, 21 Mar 2024 00:39:45 +0200 Subject: [PATCH] Added a missing space in app.h When the user runs "--help", they see the non-existent word "compressingnew". This is because of a missing space, which is now added, resulting in "compressing new". --- util/app.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/app.h b/util/app.h index cd6cb6c..61e91fd 100644 --- a/util/app.h +++ b/util/app.h @@ -199,7 +199,7 @@ struct LoaderArgs : public ArgsBase { visitor(weights, "weights", Path(), "Path name of model weights (.sbs) file. Only required if " "compressed_weights file is not present and needs to be " - "regenerated. This parameter is only required for compressing" + "regenerated. This parameter is only required for compressing " "new model weight exports, otherwise it is not needed."); } };