import sys import os sys.path.append(os.getcwd()) import pickle from utilss.Preprocess import Preprocess # 단어 사전 불러오기 f = open('train_tools/dict/chatbot_dict.bin', 'rb') word_index = pickle.load(f) f.close() sent = "내일 오전 10시에 탕수육 주문하고 싶어 ㅋㅋ" # 전처리 객체 생성 p = Preprocess(userdic='utilss/user_dic.tsv') # 형태소 분석기 실행 pos = p.pos(sent) # 품사 태그 없이 키워드 출력 keywords = p.get_keywords(pos, without_tag=True) for word in keywords: try: print(word, word_index[word]) except KeyError: # 해당 단어가 사전에 없는 경우 OOV 처리 print(word, word_index['OOV'])
# 말뭉치 데이터 읽어오기 def read_corpus_data(filename): with open(filename, 'r') as f: data = [line.split('\t') for line in f.read().splitlines()] return data # 말뭉치 데이터 가져오기 corpus_data = read_corpus_data('train_tools/dict/corpus.txt') # 말뭉치 데이터에서 키워드만 추출해서 사전 리스트 생성 p = Preprocess() dict = [] for C in corpus_data: pos = p.pos(C[1]) for k in pos: dict.append(k[0]) # 사전에 사용될 word2index 생성 # 사전에 첫 번째 인덱스에서 OOV 사용 tokenizer = preprocessing.text.Tokenizer(oov_token='OOV') tokenizer.fit_on_texts(dict) word_index = tokenizer.word_index # 사전 파일 생성 f = open('train_tools/dict/chatbot_dict.bin', 'wb') try: pickle.dump(word_index, f) except Exception as e: print(e)