Keras .To_Categorical显示意外行为:
与https://keras.io/utils/#to_categorical中的文档相反 指定dtype会返回错误
from keras.utils import to_categorical
import numpy as np
labels= np.array([0, 2, 1, 2, 0])
to_categorical(labels,dtype='int32')
产生:
TypeError: to_categorical() got an unexpected keyword argument 'dtype'
答案 0 :(得分:0)
否,它位于code中,但是问题在于该文档与github主版本相对应,而您没有安装该版本。您最有可能安装了keras版本。
当前没有Keras发行版包含此参数的提交。