摘要: import numpy as np import tensorflow as tf # 生成等间隔数值点 x, y = np.mgrid[1:3:1, 2:4:0.5] # 将x, y拉直,并合并配对为二维张量,生成二维坐标点 grid = np.c_[x.ravel(), y.ravel()] 阅读全文
posted @ 2020-09-19 16:11 说分手后还能做炮友? 阅读(143) 评论(0) 推荐(0)