标签:非线性回归
(笔记)TensorFlow实现非线性回归
TF学习笔记,纪录一下,实现代码如下: import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #使用numpy生成200个随机点 x_data = np.linspace(-0.5,0.5,200)[:,np.newaxis] noise = np.random……
12-30 立刻查看
TF学习笔记,纪录一下,实现代码如下: import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #使用numpy生成200个随机点 x_data = np.linspace(-0.5,0.5,200)[:,np.newaxis] noise = np.random……