一.简单的神经网络实现过程 1.1张量的生成 # 创建一个张量 #tf.constant(张量内容,dtpye=数据类型(可选)) import tensorflow as tf import numpy as np a = tf.constant([1,5],dtype = tf.int64) print(a) print(a.shape) print(a.dtype) tf.Tensor([1 5], shape=(2,), dtype=int64) (2,) <dtype: 'int64'…