summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/myconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/myconfig.py b/lib/myconfig.py
index 0ccd55c..bcbc3de 100644
--- a/lib/myconfig.py
+++ b/lib/myconfig.py
@@ -13,7 +13,7 @@ class MyConfig:
'PopulateEpoch': 3, \
'PartialWordThresholdEpoch': 4, \
'PartialWordEpoch': 5, \
- 'PopulateBigramEpoch': 6, \
+ 'NewWordEpoch': 6, \
}
def getEpochs(self):
@@ -132,7 +132,7 @@ class MyConfig:
assert N >= 2, 'at least bi-gram'
return N
- def getPruneMinimumOccurence(self):
+ def getPruneMinimumOccurrence(self):
return 1 # prune minimum occurrence
def getWordMinimumOccurrence(self):