摘要: 1 import tensorflow as tf 2 import numpy as np 3 4 """ 5 使用tensorflow 实现简单的 线性回归 y = np.dot(x, W) + b 6 """ 7 8 def f1(): 9 """ 10 先使用常量进行构建,展示大致的业务逻辑 阅读全文
posted @ 2020-01-15 13:11 淇则有岸 阅读(601) 评论(0) 推荐(0) 编辑