Skip to content

Commit

Permalink
Merge pull request #47 from sarthakpati/master
Browse files Browse the repository at this point in the history
cli fix
  • Loading branch information
sarthakpati authored Apr 21, 2021
2 parents f8e0259 + 5681a95 commit cbf9f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/applications/FeTS_CLI.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ int main(int argc, char** argv)
fout.close();
}

std::string args = " -d " + dataDir + " -ld " + loggingDir + " -col " + colName + device_arg + " -bsuf " + validation_to_send,
std::string args = " -d " + dataDir + " -ld " + loggingDir + " -col " + colName + device_arg,
hardcodedModelName;

if (!patchValidation)
Expand All @@ -536,7 +536,7 @@ int main(int argc, char** argv)
std::string fullCommandToRun = hardcodedPythonPath + " " + fetsApplicationPath;
fullCommandToRun += "/OpenFederatedLearning/bin/run_collaborator_from_flplan.py";

auto temp_args = args + " -p " + hardcodedPlanName + ".yaml";
auto temp_args = args + " -p " + hardcodedPlanName + ".yaml" + " -bsuf " + validation_to_send;

std::cout << "Starting training...\n";

Expand Down

0 comments on commit cbf9f35

Please sign in to comment.