摘要: import tensorflow as tffrom tensorflow import kerasdef preprocess(x,y): x = tf.cast(x, dtype = tf.float32) /255. y = tf.cast(y, dtype = tf.int64) y = 阅读全文
posted @ 2020-08-13 17:05 kpwong 阅读(900) 评论(0) 推荐(0) 编辑