Skip to content

Commit

Permalink
default model v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Mar 3, 2022
1 parent 7096929 commit c806e66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Usage: rife-ncnn-vulkan -0 infile -1 infile1 -o outfile [options]...
-o output-path output image path (jpg/png/webp) or directory
-n num-frame target frame count (default=N*2)
-s time-step time step (0~1, default=0.5)
-m model-path rife model path (default=rife-HD)
-m model-path rife model path (default=rife-v2.3)
-g gpu-id gpu device to use (-1=cpu, default=auto) can be 0,1,2 for multi-gpu
-j load:proc:save thread count for load/proc/save (default=1:2:2) can be 1:2,2,2:2 for multi-gpu
-x enable tta mode
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static void print_usage()
fprintf(stderr, " -o output-path output image path (jpg/png/webp) or directory\n");
fprintf(stderr, " -n num-frame target frame count (default=N*2)\n");
fprintf(stderr, " -s time-step time step (0~1, default=0.5)\n");
fprintf(stderr, " -m model-path rife model path (default=rife-HD)\n");
fprintf(stderr, " -m model-path rife model path (default=rife-v2.3)\n");
fprintf(stderr, " -g gpu-id gpu device to use (-1=cpu, 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");
fprintf(stdout, " -x enable tta mode\n");
Expand Down Expand Up @@ -447,7 +447,7 @@ int main(int argc, char** argv)
path_t outputpath;
int numframe = 0;
float timestep = 0.5f;
path_t model = PATHSTR("rife-HD");
path_t model = PATHSTR("rife-v2.3");
std::vector<int> gpuid;
int jobs_load = 1;
std::vector<int> jobs_proc;
Expand Down

0 comments on commit c806e66

Please sign in to comment.