diff --git a/main.cpp b/main.cpp index 9d44c3d..40d2b27 100644 --- a/main.cpp +++ b/main.cpp @@ -207,7 +207,7 @@ static void print_usage() fprintf(stderr, " -w width resize output to a width (default=W:default), use '-r help' for more details\n"); fprintf(stderr, " -c compress compression of the output image, default 0 and varies to 100\n"); fprintf(stderr, " -t tile-size tile size (>=32/0=auto, default=0) can be 0,0,0 for multi-gpu\n"); - fprintf(stderr, " -m model-path folder path to the pre-trained models. default=models\n"); + fprintf(stderr, " -m model-path folder path to the pre-trained models. default=REPLACE_MODELS\n"); fprintf(stderr, " -n model-name model name (default=realesrgan-x4plus, can be realesr-animevideov3 | realesrgan-x4plus-anime | realesrnet-x4plus or any other model)\n"); fprintf(stderr, " -g gpu-id gpu device to use (default=auto) can be 0,1,2 for multi-gpu\n"); fprintf(stderr, " -j load:proc:save thread count for load/proc/save (default=1:2:2) can be 1:2,2,2:2 for multi-gpu\n"); @@ -688,7 +688,7 @@ int main(int argc, char **argv) bool resizeProvided = false; bool hasCustomWidth = false; std::vector tilesize; - path_t model = PATHSTR("models"); + path_t model = PATHSTR("REPLACE_MODELS"); path_t modelname = PATHSTR("realesrgan-x4plus"); std::vector gpuid; int jobs_load = 1;