texts_to_matrix1 DL : Keras texts_to_matrix 이해하기 texts_to_matrix()는 입력된 텍스트 데이터로부터 행렬(matrix)를 만드는 도구입니다. texts_to_matrx()는 총 4개의 모드를 지원하는데 각 모드는 'binary', 'count', 'freq', 'tfidf'로 총 4개입니다. 우선 'count' 모드를 사용해봅시다. word_index를 기준으로 texts들을 matrix로 바꾼다. import numpy as np from tensorflow.keras.preprocessing.text import Tokenizer texts = ['먹고 싶은 사과', '먹고 싶은 바나나', '길고 노란 바나나 바나나', '저는 과일이 좋아요'] t = Tokenizer() t.fit_on_texts(texts) print(t.word_in.. 2020. 3. 10. 이전 1 다음