padding: 자연어처리 시, 각 문장의 길이나 단어의 길이를 임의로 동일하게 맞추어 주는 작업 (신경망 주입 전 텍스트 > 텐서)
tf.keras.preprocessing.sequences.pad_sequences(
sequences, maxlen=None, dtype='int32', padding='pre',
truncating='pre', value=0.0)
)
sequences: 시퀀스 목록 (각 시퀀스는 정수목록)
maxlen: 모든 시퀀스의 최대 길이
dtype: 출력 시퀀스의 유형 (기본값은 int32)
padding: 'pre' 앖에 빈공간을 0으로 채움, 'post' 뒤에 빈공간을 0으로 채움 (기본값은 'pre')
truncating: 시퀀스 maxlen의 시작이나 끝에서 보다 큰 시퀀스에서 값을 제거
value: 부동 소수점 또는 문자열, 패딩값 (기본값은 0)