From 157585cf0c39ce7e81184a1884e2747d94b562ed Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Tue, 4 May 2021 15:31:20 +0200
Subject: [PATCH] Fixed missing argument

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

diff --git a/Train.py b/Train.py
index cac81e2..cd21874 100644
--- a/Train.py
+++ b/Train.py
@@ -62,7 +62,7 @@ def extractExamples(debug, ts, strat, config, dicts, network, dynamic) :
       example = torch.cat([torch.LongTensor([goldIndex]), features])
       examples.append(example)
 
-      moved = applyTransition(ts, strat, config, candidate)
+      moved = applyTransition(ts, strat, config, candidate, None)
   
     EOS.apply(config, strat)
   
-- 
GitLab