Skip to content

Commit

Permalink
Update rife.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise authored Dec 25, 2023
1 parent 4fcdec2 commit f056b75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rife.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ int RIFE::load(const std::string& modeldir)
load_param_model(contextnet, modeldir, L"contextnet");
load_param_model(fusionnet, modeldir, L"fusionnet");
}
}catch{
}catch(...) {
rife_v4=true;
rife_v2=false;
}
Expand All @@ -168,7 +168,7 @@ int RIFE::load(const std::string& modeldir)
load_param_model(contextnet, modeldir, "contextnet");
load_param_model(fusionnet, modeldir, "fusionnet");
}
}catch{
}catch(...) {
rife_v4=true;
rife_v2=false;
}
Expand Down

4 comments on commit f056b75

@2blackbar
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey man, did you applied a fix for numframes ? can you do it and compile : nihui#60 (comment)

@TNTwise
Copy link
Owner Author

@TNTwise TNTwise commented on f056b75 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey man, did you applied a fix for numframes ? can you do it and compile : nihui#60 (comment)

yeah, recompiling now

@2blackbar
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks, managed to fork and run worker to compile it then added release and simple python gui for it

@TNTwise
Copy link
Owner Author

@TNTwise TNTwise commented on f056b75 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.