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

Added description of program argument dynamicOracleInterval

parent 6da709d7
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ po::options_description MacaonTrain::getOptionsDescription() ...@@ -34,7 +34,7 @@ po::options_description MacaonTrain::getOptionsDescription()
("batchSize", po::value<int>()->default_value(64), ("batchSize", po::value<int>()->default_value(64),
"Number of examples per batch") "Number of examples per batch")
("dynamicOracleInterval", po::value<int>()->default_value(-1), ("dynamicOracleInterval", po::value<int>()->default_value(-1),
"Number of examples per batch") "Every X epochs, the machine will be used to decode the train and dev corpora. Thus allowing the machine to train using it's own predictions as feature. A value of -1 means the machine will always train on GOLD features. This option slows training down by a LOT.")
("rarityThreshold", po::value<float>()->default_value(70.0), ("rarityThreshold", po::value<float>()->default_value(70.0),
"During train, the X% rarest elements will be treated as unknown values") "During train, the X% rarest elements will be treated as unknown values")
("machine", po::value<std::string>()->default_value(""), ("machine", po::value<std::string>()->default_value(""),
......
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