Skip to content
Snippets Groups Projects
Commit 092c5939 authored by Franck Dary's avatar Franck Dary
Browse files

Fixed arguments in macaon_train

parent 05bf505e
No related branches found
No related tags found
No related merge requests found
......@@ -12,10 +12,10 @@ po::options_description getOptionsDescription()
po::options_description req("Required");
req.add_options()
("expName", po::value<std::string>()->required(),
"Name of this experiment")
("model", po::value<std::string>()->required(),
"Directory containing the machine file to train")
("mcd", po::value<std::string>()->required(),
"Multi Column Description file that describes the input format")
("trainTSV", po::value<std::string>()->required(),
"TSV file of the training corpus, in CONLLU format");
......@@ -62,7 +62,6 @@ int main(int argc, char * argv[])
auto od = getOptionsDescription();
auto variables = checkOptions(od, argc, argv);
auto expName = variables["expName"].as<std::string>();
std::filesystem::path modelPath(variables["model"].as<std::string>());
auto machinePath = modelPath / "machine.rm";
auto mcdFile = variables["mcd"].as<std::string>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment