diff options
| author | Peng Wu <alexepico@gmail.com> | 2011-07-27 18:56:01 +0800 |
|---|---|---|
| committer | Peng Wu <alexepico@gmail.com> | 2011-07-27 18:56:01 +0800 |
| commit | c676243f85f22ace3ca18dcb07e79db2b133f21c (patch) | |
| tree | 70079abc8c27822509868706e99528f0aee610f5 /lib | |
| parent | 5b2b30242c8b07b954e7a0bf7b647c2a6e219c47 (diff) | |
| download | trainer-c676243f85f22ace3ca18dcb07e79db2b133f21c.tar.gz trainer-c676243f85f22ace3ca18dcb07e79db2b133f21c.tar.xz trainer-c676243f85f22ace3ca18dcb07e79db2b133f21c.zip | |
fixes estimate.py
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/myconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): |
