Skip to content

Commit c806e66

Browse files
committed
default model v2.3
1 parent 7096929 commit c806e66

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Usage: rife-ncnn-vulkan -0 infile -1 infile1 -o outfile [options]...
7979
-o output-path output image path (jpg/png/webp) or directory
8080
-n num-frame target frame count (default=N*2)
8181
-s time-step time step (0~1, default=0.5)
82-
-m model-path rife model path (default=rife-HD)
82+
-m model-path rife model path (default=rife-v2.3)
8383
-g gpu-id gpu device to use (-1=cpu, default=auto) can be 0,1,2 for multi-gpu
8484
-j load:proc:save thread count for load/proc/save (default=1:2:2) can be 1:2,2,2:2 for multi-gpu
8585
-x enable tta mode

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ static void print_usage()
111111
fprintf(stderr, " -o output-path output image path (jpg/png/webp) or directory\n");
112112
fprintf(stderr, " -n num-frame target frame count (default=N*2)\n");
113113
fprintf(stderr, " -s time-step time step (0~1, default=0.5)\n");
114-
fprintf(stderr, " -m model-path rife model path (default=rife-HD)\n");
114+
fprintf(stderr, " -m model-path rife model path (default=rife-v2.3)\n");
115115
fprintf(stderr, " -g gpu-id gpu device to use (-1=cpu, default=auto) can be 0,1,2 for multi-gpu\n");
116116
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");
117117
fprintf(stdout, " -x enable tta mode\n");
@@ -447,7 +447,7 @@ int main(int argc, char** argv)
447447
path_t outputpath;
448448
int numframe = 0;
449449
float timestep = 0.5f;
450-
path_t model = PATHSTR("rife-HD");
450+
path_t model = PATHSTR("rife-v2.3");
451451
std::vector<int> gpuid;
452452
int jobs_load = 1;
453453
std::vector<int> jobs_proc;

0 commit comments

Comments
 (0)