Skip to content

Commit

Permalink
update myconfig.py
Browse files Browse the repository at this point in the history
  • Loading branch information
epico committed Feb 4, 2013
1 parent f66c059 commit 2812459
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/myconfig.py
Expand Up @@ -128,7 +128,7 @@ def getWordSep(self):
return " "

def getMaximumCombineNumber(self):
N = 5
N = 7
assert N >= 2, 'at least bi-gram'
return N

Expand All @@ -142,10 +142,10 @@ def getNgramMinimumOccurrence(self):
return 9 # minimum word occurrence in n-gram table

def getPartialWordThreshold(self):
return 0.10 # the first 10% in position
return 0.70 # the first 70% in position

def getNewWordThreshold(self):
return 0.95 # the first 95% in position, subject verb object.
return 0.70 # the first 70% in position, subject verb object.

def getMinimumEntropy(self):
return 0.01
Expand Down

0 comments on commit 2812459

Please sign in to comment.