当前位置:网站首页>Tensorflow中使用convert_to_tensor去指定数据的类型
Tensorflow中使用convert_to_tensor去指定数据的类型
2022-08-09 21:35:00 【phac123】
简介
在Tensorflow中,可以通过convert_to_tensor去指定使用np所生成的数据;但是如果一开始生成的就是tf的tensor数据类型,再使用convert_to_tensor去转换数据类型会报错。
代码
转换成功
import tensorflow as tf
import numpy as np
a = np.arange(0, 5)
b = tf.convert_to_tensor(a, dtype = tf.int64)
a = [3, 4]
b = tf.convert_to_tensor(a, dtype = tf.int64)
a = (5, 6)
b = tf.convert_to_tensor(a, dtype = tf.float64)
print("a: ", a)
print("b: ", b)

转换失败
import tensorflow as tf
import numpy as np
a = tf.Variable(tf.constant(5))
b = tf.convert_to_tensor(a, dtype = tf.int64)
print("a: ", a)
print("b: ", b)

边栏推荐
- 6 g underwater channel modeling were summarized based on optical communication
- Optimization of SQL Statements and Indexes
- [Generic Programming] Full Detailed Explanation of Templates
- 如何让您的公司内容满足 GDPR 合规性
- Definition and Basic Operations of Linear Tables
- [Essay] To the friends of the 19th issue
- Word箭头上面怎么打字
- L3-2 至多删三个字符 (30 分)
- Don't tell me to play, I'm taking the PMP exam: what you need to know about choosing an institution for the PMP exam
- 角度和弧度的相互换算
猜你喜欢
随机推荐
gmail+mtalk配合打免费网络电话。
痛击面试官 CURD系统也能做出技术含量
MySQL笔记-06 基础SQL操作
上海控安SmartRocket系列产品推介(三):SmartRocket iVerifier计算机联锁系统验证工具
leetcode:数组中的第K个最大元素
Ankerui supports Ethernet communication, profibus communication embedded energy meter APM guiding technical requirements-Susie Week
How to fix Windows 11 not finding files
URL Protocol web page to open the application
XXE-XML外部实体注入-知识点
Jensen (琴生) 不等式
普源精电上半年扭亏为盈,高端产品持续发力!你看好仪器界“华为”吗?
cad图纸怎么复制到word文档里面?Word里插CAD图怎么弄?
FS4066耐高压1到4节内置MOS的锂电池充电管理芯片
Puyuan Jingdian turned losses into profits in the first half of the year, and high-end products continued to develop!Are you optimistic about "Huawei" in the instrument industry?
PHP 二维数组根据某个字段排序
C语言中的文件是什么?
hdu 3341 Lost's revenge(dp+Ac自动机)
【云原生】4.2 DevOps 精讲篇
What to do if Windows 11 can't find Internet Explorer
Cholesterol-PEG-Thiol,CLS-PEG-SH,胆固醇-聚乙二醇-巯基用于改善溶解度





![[Generic Programming] Full Detailed Explanation of Templates](/img/9d/7864f999cb2e4edda2ee7723558135.png)


