線性迴歸模型示例(一)

線性迴歸示例 import tensorflow as tf import numpy as np import matplotlib.pyplot as plt # Prepare train data train_X = np.linspace(-1, 1, 100) train_Y = 2 * train_X + np.random.randn(*train_X.shape) * 0.33
相關文章
相關標籤/搜索