From e0926705005d9a8e9771f6af38883004df596663 Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Sat, 24 Apr 2021 19:54:38 +0200
Subject: [PATCH] Reduced probaRandom and probaORacle

---
 Train.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Train.py b/Train.py
index b586dbc..11215ed 100644
--- a/Train.py
+++ b/Train.py
@@ -172,7 +172,7 @@ def trainModelRl(debug, modelDir, filename, nbIter, batchSize, devFile, transiti
         missingLinks = getMissingLinks(sentence)
         if debug :
           sentence.printForDebug(sys.stderr)
-        action = selectAction(policy_net, state, transitionSet, sentence, missingLinks, probaRandom=0.3, probaOracle=0.15)
+        action = selectAction(policy_net, state, transitionSet, sentence, missingLinks, probaRandom=0.1, probaOracle=0.1)
         if action is None :
           break
 
-- 
GitLab