tensorflow2.0将张量转化为numpy

其实非常简单,网上的答案很不靠谱,用什么session啥的,会报很多错误。

解决如下:

# a为一个张量,则转化为numpy:
array = a.numpy()

你可能感兴趣的:(numpy,tensorflow,python)