利用tf.convert_to_tensor转换为类型

简介: 【8月更文挑战第11天】利用tf.convert_to_tensor转换为类型。

从numpy,list对象创建,再利用tf.convert_to_tensor转换为类型。
将给定制转换为张量。可利用这个函数将python的数据类型转换成TensorFlow可用的tensor数据类型。

tf.convert_to_tensor(value,dtype=None,dtype_hint=None,name=None):
value:需转换数值;
dtype:张量数据类型;
dtype_hint:返回张量的可选元素类型,当dtype为None时使用。在某些情况下,调用者在tf.convert_to_tensor时可能没有考虑到dtype,因此dtype_hint可以用作为首选项。

代码:

创建一个列表

list_f = [1,2,3,4,5,6]

查看数据类型

type(list_f)
输出:
list

代码:
tensor_f = tf.convert_to_tensor(list_f, dtype=tf.float32)
tensor_f
输出:

目录
相关文章
|
存储 PyTorch 算法框架/工具
Tensor to img && imge to tensor (pytorch的tensor转换)
Tensor to img && imge to tensor (pytorch的tensor转换)
|
24天前
|
TensorFlow 算法框架/工具
Tensorflow error(二):x and y must have the same dtype, got tf.float32 != tf.int32
本文讨论了TensorFlow中的一个常见错误,即在计算过程中,变量的数据类型(dtype)不一致导致的错误,并通过使用`tf.cast`函数来解决这个问题。
18 0
|
3月前
|
机器学习/深度学习 索引 Python
array, list, tensor,Dataframe,Series之间互相转换总结
array, list, tensor,Dataframe,Series之间互相转换总结
|
3月前
|
TensorFlow 算法框架/工具
创建变量tensor
【8月更文挑战第13天】 创建变量tensor。
27 1
|
3月前
创建变量tensor
【8月更文挑战第12天】创建变量tensor。
25 1
成功解决TypeError: unhashable type: 'numpy.ndarray'
成功解决TypeError: unhashable type: 'numpy.ndarray'
|
3月前
|
TensorFlow API 算法框架/工具
【Tensorflow+keras】解决使用model.load_weights时报错 ‘str‘ object has no attribute ‘decode‘
python 3.6,Tensorflow 2.0,在使用Tensorflow 的keras API,加载权重模型时,报错’str’ object has no attribute ‘decode’
49 0
成功解决ValueError: Input contains NaN, infinity or a value too large for dtype('float64').
成功解决ValueError: Input contains NaN, infinity or a value too large for dtype('float64').
torch.argmax(dim=1)用法
)torch.argmax(input, dim=None, keepdim=False)返回指定维度最大值的序号;
634 0
|
并行计算 Python
TypeError: can‘t convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory
运行程序,出现报错信息 TypeError: can't convert CUDA tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.。
310 0