From c676243f85f22ace3ca18dcb07e79db2b133f21c Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Wed, 27 Jul 2011 18:56:01 +0800 Subject: fixes estimate.py --- lib/myconfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/myconfig.py b/lib/myconfig.py index f40d2a4..a5f4eec 100644 --- a/lib/myconfig.py +++ b/lib/myconfig.py @@ -39,7 +39,7 @@ class MyConfig: return self.m_evals_dir def getEstimatesModel(self): - estimates_model = m_tools_dir + '/data/estimates.db' + estimates_model = self.m_tools_dir + '/data/estimates.db' return estimates_model def getEstimateIndex(self): @@ -62,7 +62,7 @@ class MyConfig: #the trained corpus size of model candidates def getCandidateModelSize(self): - candidate_model_size = 11.9 * 1024 * 1024 + candidate_model_size = 11.9 * 1024 * 1024 * 3 return candidate_model_size def getModelPostfix(self): -- cgit