コード例 #1
0
 def spell_guess(self):
     """
      Whether or not to run the spelling guesser on unknown words.
      The default number of maximum number of spell corrections per word
      is 7, and can be set when an optional value is supplied.
     """
     return clg.parse_options_get_spell_guess(self._obj) == 7
コード例 #2
0
 def spell_guess(self):
     """
      Whether or not to run the spelling guesser on unknown words.
      The default number of maximum number of spell corrections per word
      is 7, and can be set when an optional value is supplied.
     """
     return clg.parse_options_get_spell_guess(self._obj) == 7
コード例 #3
0
ファイル: linkgrammar.py プロジェクト: virneo/link-grammar
 def spell_guess(self):
     """
      If greater then 0, the spelling guesser is used on unknown words.
      In that case, it performs at most this number of spell corrections
      per word, and performs run-on corrections which are not limited in
      their number. If 0 - the spelling guesser would not be used.
     """
     return clg.parse_options_get_spell_guess(self._obj)
コード例 #4
0
 def spell_guess(self):
     """
      If greater then 0, the spelling guesser is used on unknown words.
      In that case, it performs at most this number of spell corrections
      per word, and performs run-on corrections which are not limited in
      their number. If 0 - the spelling guesser would not be used.
     """
     return clg.parse_options_get_spell_guess(self._obj)
コード例 #5
0
ファイル: clinkgrammar.py プロジェクト: ggosline/taxonparser
def parse_options_get_spell_guess(*args) -> "int" :
  return _clinkgrammar.parse_options_get_spell_guess(*args)
コード例 #6
0
 def fget(self):
     return clg.parse_options_get_spell_guess(self._po) == 1
コード例 #7
0
ファイル: linkgrammar.py プロジェクト: lagleki/jorne
 def fget(self):
     return clg.parse_options_get_spell_guess(self._po) == 1
コード例 #8
0
def parse_options_get_spell_guess(opts):
    return _clinkgrammar.parse_options_get_spell_guess(opts)
コード例 #9
0
ファイル: clinkgrammar.py プロジェクト: raschild6/relex
def parse_options_get_spell_guess(opts: 'Parse_Options') -> "int":
    return _clinkgrammar.parse_options_get_spell_guess(opts)
コード例 #10
0
ファイル: linkgrammar.py プロジェクト: sirgolan/link-grammar
 def spell_guess(self):
     """
      Whether or not to running the spelling guesser on unknown words.
     """
     return clg.parse_options_get_spell_guess(self._obj) == 1
コード例 #11
0
def parse_options_get_spell_guess(*args) -> "int":
    return _clinkgrammar.parse_options_get_spell_guess(*args)
コード例 #12
0
ファイル: linkgrammar.py プロジェクト: sirgolan/link-grammar
 def spell_guess(self):
     """
      Whether or not to running the spelling guesser on unknown words.
     """
     return clg.parse_options_get_spell_guess(self._obj) == 1