From 8d41f481dd2933f2ca6cd730a25350e81a2174ef Mon Sep 17 00:00:00 2001 From: Brad Grimm Date: Fri, 17 Mar 2023 18:06:24 -0600 Subject: [PATCH] Fixed path to config files in README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55eb0bc..b4d14b2 100644 --- a/README.md +++ b/README.md @@ -51,10 +51,10 @@ Download the pretrained checkpoints and run: ```python # inference with FreeVC -CUDA_VISIBLE_DEVICES=0 python convert.py --hpfile logs/freevc.json --ptfile checkpoints/freevc.pth --txtpath convert.txt --outdir outputs/freevc +CUDA_VISIBLE_DEVICES=0 python convert.py --hpfile configs/freevc.json --ptfile checkpoints/freevc.pth --txtpath convert.txt --outdir outputs/freevc # inference with FreeVC-s -CUDA_VISIBLE_DEVICES=0 python convert.py --hpfile logs/freevc-s.json --ptfile checkpoints/freevc-s.pth --txtpath convert.txt --outdir outputs/freevc-s +CUDA_VISIBLE_DEVICES=0 python convert.py --hpfile configs/freevc-s.json --ptfile checkpoints/freevc-s.pth --txtpath convert.txt --outdir outputs/freevc-s ``` ## Training Example