keras min TypeError: Value passed to parameter ‘reduction_indices’ has DataType float32 not in list of allowed values: int32, int64

このエラーが出た時は関数の使い方を疑う.例えば,K.min([a, b])とするところをK.min(a,b)としていないかなど.また,キャストを行うことも対策として挙げられる.

step = K.cast(step, dtype="float32")

Keras

Posted by vastee