我正在使用 keras 功能 api,并且我有形状张量
phrasing.shape = (?, 553777, 19, 3)
现在我想采用unigram
and bigram
&的最大特征,trigram
所以预期的形状应该是
(?, 553777, 19, 1)
所以我添加了这一行
ph = MaxPooling2D ( pool_size=(1,3) )(phrasing)
并得到这个错误:IndexError: tuple index out of range