# 定义模型 接下来,我们将模型定义为`x_tensor × w + b`: ```py model = tf.matmul(x_tensor, w) + b ```