TensorFlow
CRISTIANO Xusanduo
这个作者很懒,什么都没留下…
展开
-
conda 安装 tensorrt7 tensorflow1.15
当运行tensorrt中的sample时,发现居然需要tensorflow是1.15...1.创建新的conda环境conda create -n tensorrt_tf1.15 python=3.6conda acitvate tensorrt_tf1.152.安装cuda、cudnn、tf1.15conda install cudatoolkit=10.0.130 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/fre原创 2021-10-19 15:46:53 · 634 阅读 · 0 评论 -
tensorflow 类型转换
TypeError: 'DType' object is not callabledef cast(x, dtype, name=None): """Casts a tensor to a new type. The operation casts `x` (in case of `Tensor`) or `x.values` (in case of `SparseTensor` or `IndexedSlices`) to `dtype`. For example: >原创 2021-09-24 22:39:59 · 1100 阅读 · 0 评论 -
TensorFlow 之 keras.layers.Conv2D( ) 主要参数讲解
https://www.cnblogs.com/qianyuesheng/p/14849306.html转载 2021-08-26 15:16:15 · 1091 阅读 · 0 评论 -
tf2.0 load_data超时
load_data()超时解决在做minist数据加载时,tf2.0虽然提供了方法,但是特么的没法用(由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。),翻墙也没用,数据下载不了,因为google把库都删了(https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz),但是没改代码,当然可能tf...原创 2020-01-17 18:00:51 · 532 阅读 · 2 评论 -
window10 GTX1050 TensorFlow gpu版安装配置教程
综合多篇文章,实际操作后,可正常使用。总结配置流程如下:选取TF gpu版,众所周知,目前框架gpu速度远高于cpu速度;所以选取gpu版。在NVIDIA官网,查询笔记本gtx1050是不被支持的,没有关系,实际是支持的。主要分为 CUDA、CUDNN安装;python安装;TF安装;**一、CUDA、CUDNN安装**参考[文章win10搭建tensorflow-gpu环境按照文...原创 2019-03-18 14:21:30 · 5251 阅读 · 1 评论