我构建了一个具有以下结构的槽填充(一种序列分类)模型:自定义 ELMo 嵌入层 - BiLSTM - CRF。
它训练得很好。但在预测中我得到:
'TypeError: ufunc 'add' did not contain a loop with signature matching types dtype('<U4') dtype('<U4') dtype('<U4')'.
注意:U4 是一个无符号整数。
在此处的类似问题中,建议“使用预测时,test_data 应与 type(training_data[0]) 的数据类型相同,并且它将返回 type(training_labels[0]) 的数据类型”。我已经确认是的,我的每个测试样本都与 training_data[0] 类型相同。
本文末尾的完整错误消息。
注意:这个问题可能与我之前需要将我的训练和测试数据更改为 np.strings 的事实有关,使用:
X_train_sents = np.array(X_train_sents, dtype=np.str)
y_train_sents = np.array(y_train_sents, dtype=np.str)
这是为了避免在模型构建过程中出错,即:str没有属性ndim。如果我不将测试数据转换为 np.str,我会再次收到此错误。
一位同事认为问题出在 Keras 深处某个地方的 add 方法(见错误)。显然,这是一种使用无符号整数的特殊添加方法,它不应该引起这样的问题。
自定义层松散地基于此人的存储库
重现错误:我在这里设置了一个包含代码和一些虚拟数据的 github 存储库
完整错误:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-15-f71c3fcdc6d2> in <module>
16 print(type(X_train_sents[0]))
17 print(type(X_test_sents[0]))
---> 18 test_pred = model.predict(X_test_sents, y_test)
~/.conda/envs/base_munroke/lib/python3.7/site-packages/keras/engine/training.py in predict(self, x, batch_size, verbose, steps)
1167 batch_size=batch_size,
1168 verbose=verbose,
-> 1169 steps=steps)
1170
1171 def train_on_batch(self, x, y,
~/.conda/envs/base_munroke/lib/python3.7/site-packages/keras/engine/training_arrays.py in predict_loop(model, f, ins, batch_size, verbose, steps)
280 # Sample-based predictions.
281 outs = []
--> 282 batches = make_batches(num_samples, batch_size)
283 index_array = np.arange(num_samples)
284 for batch_index, (batch_start, batch_end) in enumerate(batches):
~/.conda/envs/base_munroke/lib/python3.7/site-packages/keras/engine/training_utils.py in make_batches(size, batch_size)
367 A list of tuples of array indices.
368 """
--> 369 num_batches = (size + batch_size - 1) // batch_size # round up
370 return [(i * batch_size, min(size, (i + 1) * batch_size))
371 for i in range(num_batches)]
TypeError: ufunc 'add' did not contain a loop with signature matching types dtype('<U4') dtype('<U4') dtype('<U4')