예제 #1
0
	def __init__(self, stop_words_file = None):
		super(Extractor, self).__init__()
		self.keyword_extraction = KeywordExtraction(stop_words_file=stop_words_file)
		self.sentence_extraction = SentenceExtraction(stop_words_file=stop_words_file)