ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
# 定义模型 接下来,我们将模型定义为`x_tensor × w + b`: ```py model = tf.matmul(x_tensor, w) + b ```