摘要: # 1.构建神经网络 import tensorflow as tf import numpy as np BATCH_SIZE=8 SEED=23455 rdm=np.random.RandomState(SEED) X=rdm.rand(32,2) Y=[[x1+x2+(rdm.rand()/1 阅读全文
posted @ 2019-11-03 20:22 lujiacheng-python 阅读(266) 评论(0) 推荐(0) 编辑