|
|
@@ -115,10 +115,8 @@ bool is_target_file(const std::string& filename, const std::string target) {
|
|
|
|
|
|
void GetValue(TCLAP::ValueArg<std::string>& value_arg, string key, std::map<std::string, std::string>& model_path)
|
|
|
{
|
|
|
- if (value_arg.isSet()){
|
|
|
- model_path.insert({key, value_arg.getValue()});
|
|
|
- LOG(INFO)<< key << " : " << value_arg.getValue();
|
|
|
- }
|
|
|
+ model_path.insert({key, value_arg.getValue()});
|
|
|
+ LOG(INFO)<< key << " : " << value_arg.getValue();
|
|
|
}
|
|
|
|
|
|
int main(int argc, char *argv[])
|