From f710681b8a55a348877147649030f41306058610 Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Mon, 12 Jul 2021 15:25:44 +0200
Subject: [PATCH] Improved base history size

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

diff --git a/Networks.py b/Networks.py
index f1c8180..90f0460 100644
--- a/Networks.py
+++ b/Networks.py
@@ -7,7 +7,7 @@ import Features
 def createNetwork(name, dicts, outputSizes, incremental) :
   featureFunctionAll = "b.-2 b.-1 b.0 b.1 b.2 s.0 s.1 s.2 s.0.0 s.0.-1 s.0.1 s.1.0 s.1.-1 s.1.1 s.2.0 s.2.-1 s.2.1"
   featureFunctionNostack = "b.-2 b.-1 b.0 b.1 b.2"
-  historyNb = 5
+  historyNb = 10
   suffixSize = 4
   prefixSize = 4
   hiddenSize = 1600
-- 
GitLab