我目前有一个图像序列的多个数据,看起来像这样:
image_sequence = [nsamples, nchannels, width, height]
,
其中
ylabels = [nsamples]
(每张图片0或1)
基本上,我有多个 image_sequences 的记录,唯一的变量是 image_sequence 中的样本数。我对 Keras 的理解是,nsamples需要在某种程度上填充(例如
newimage_seq = keras.preprocessing.sequence.pad_sequences(image_sequence,
maxlen, padding='pre', truncating='pre', value=0.)
我有几个问题:
例如,我会这样填写ylabels吗?
newy_seq = keras.preprocessing.sequence.pad_sequences(ylabels,
maxlen, padding='pre', truncating='pre', value=0.)