[TIL]Day 67

이재희·2021년 2월 4일
0

TIL

목록 보기
67/312

데이터 전처리 관련 코드

문자열 데이터 앞에 패딩 주는 것

from tensorflow.keras.preprocessing import sequence

maxlen=100
x_train_seq = sequence.pad_sequences(x_train,maxlen=maxlen)
x_val_seq = sequence.pad_sequences(x_val,maxlen=maxlen)

one-hot encoding

from tensorflow.keras.utils import to_categorical

x_train_onehot = to_categorical(x_train_seq)
x_val_onehot = to_categorical(x_val_seq)
profile
오늘부터 열심히 산다

0개의 댓글