本文整理匯總了Python中jieba._get_abs_path方法的典型用法代碼示例。如果您正苦於以下問題:Python jieba._get_abs_path方法的具體用法?Python jieba._get_abs_path怎麽用?Python jieba._get_abs_path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類jieba
的用法示例。
在下文中一共展示了jieba._get_abs_path方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: set_stop_words
# 需要導入模塊: import jieba [as 別名]
# 或者: from jieba import _get_abs_path [as 別名]
def set_stop_words(self, stop_words_path):
abs_path = _get_abs_path(stop_words_path)
if not os.path.isfile(abs_path):
raise Exception("jieba: file does not exist: " + abs_path)
content = open(abs_path, 'rb').read().decode('utf-8')
for line in content.splitlines():
self.stop_words.add(line)
示例2: set_idf_path
# 需要導入模塊: import jieba [as 別名]
# 或者: from jieba import _get_abs_path [as 別名]
def set_idf_path(self, idf_path):
new_abs_path = _get_abs_path(idf_path)
if not os.path.isfile(new_abs_path):
raise Exception("jieba: file does not exist: " + new_abs_path)
self.idf_loader.set_new_path(new_abs_path)
self.idf_freq, self.median_idf = self.idf_loader.get_idf()