Tensorflow 学习遇到的问题
程序员文章站
2024-01-19 08:13:58
...
参考博客为:https://blog.csdn.net/xierhacker/article/details/53102355
在初步学习tensorflow的过程中,遇到了tensorflow实例.numpy() 报错
AttributeError: 'Tensor' object has no attribute 'numpy'
在国内网站上似乎没有找到解决办法,后来在*中找到了答案:
由于该方法需要启用eager_execution(),也就是需要启用eager 链接在这
所以只需要在代码中加入
tf.enable_eager_execution()
即可。官方API 在这
HelloWord程序参考如下:
from __future__ import print_function,division
import tensorflow as tf
#define the graph
tf.enable_eager_execution()
info = tf.constant("hello world")
a=tf.constant([[1,2],[3,4]])
b=tf.constant([[1,1],[0,1]])
print("info:",info)
print("a:",a)
print("b:",b)
print("type of a:",type(a))
# mul option
c=tf.matmul(a,b)
print("c:",c)
print("c.numpy:\n",c.numpy())
print("type of c.numpy():",type(c.numpy()))
print("\n")
'''
output:
info: tf.Tensor(b'hello world', shape=(), dtype=string)
a: tf.Tensor(
[[1 2]
[3 4]], shape=(2, 2), dtype=int32)
b: tf.Tensor(
[[1 1]
[0 1]], shape=(2, 2), dtype=int32)
type of a: <class 'EagerTensor'>
c: tf.Tensor(
[[1 3]
[3 7]], shape=(2, 2), dtype=int32)
c.numpy:
[[1 3]
[3 7]]
type of c.numpy(): <class 'numpy.ndarray'>
'''
#show the dedvice
print("device:",c.device)
print("dtype:",c.dtype)
print("shape:",type(c.shape))
'''
output:
device: /job:localhost/replica:0/task:0/device:CPU:0
dtype: <dtype: 'int32'>
shape: <class 'tensorflow.python.framework.tensor_shape.TensorShape'>
'''
上一篇: 【web前端】14.手机页面不允许缩放
下一篇: 010.day010
推荐阅读
-
Tensorflow 学习遇到的问题
-
简单学习php遇到的主要问题
-
ECshop 迁移到 PHP7版本时遇到的兼容性问题,ecshopphp7_PHP教程
-
cordova+vue 项目打包成APK应用遇到的问题和解决方法
-
魔术方法 - php简单操作数组和对象时候遇到的两个问题,一起请教各位了
-
【PHP字符串】今天遇到一个很神奇的问题,请大家帮忙
-
【PHP字符串】今天遇到一个很神奇的问题,请大家帮忙
-
PHP5 在调用 JAVA WebService 时遇到的各种问题解决方法_PHP教程
-
github 使用中遇到的问题
-
python:安装pip以及使用pip安装requests模块过程中遇到的问题