From dd57c08543be10f264fd75836b1829429603591e Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Tue, 12 May 2020 18:03:24 +0200
Subject: [PATCH] Added description of program argument dynamicOracleInterval

---
 trainer/src/MacaonTrain.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trainer/src/MacaonTrain.cpp b/trainer/src/MacaonTrain.cpp
index 20d03eb..3c67ce1 100644
--- a/trainer/src/MacaonTrain.cpp
+++ b/trainer/src/MacaonTrain.cpp
@@ -34,7 +34,7 @@ po::options_description MacaonTrain::getOptionsDescription()
     ("batchSize", po::value<int>()->default_value(64),
       "Number of examples per batch")
     ("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),
       "During train, the X% rarest elements will be treated as unknown values")
     ("machine", po::value<std::string>()->default_value(""),
-- 
GitLab