TensorFlow
文章平均质量分 57
AiBigData
生而有涯,知而无涯.
不断迭代,实现自我.
展开
-
ubuntu20.04+3090+tf1/tf2+pytorch+keras全套安装流程
主要参考这篇文章,其中修改了自己遇到的问题 py37或py38 cuda11.1 tf-nightly-gpu==2.6.0.dev20210507 pytorch1.8 keras2.3 安装gcc sudo apt install build-essential gcc -v #查看gcc版本 官网下载对应版本显卡驱动及cuda:(以下版本对应11.1cuda,此处安装cuda是为了tf的某个缺失的文件) wget https://developer.download.nvidia.com/原创 2021-05-07 22:11:13 · 1238 阅读 · 11 评论 -
tensorflow-cpu==2.4在mac pro上安装
使用conda创建虚拟环境 conda create -name tf 激活虚拟环境 conda activate tf pip安装tf,使用豆瓣镜像。 pip install tensorflow-cpu==2.4 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com pip install tensorflow==2.4 -i http://pypi.douban.com/simple --trusted-host pypi.do原创 2021-01-26 19:31:09 · 727 阅读 · 0 评论 -
RTX3090+Ubuntu 20.04+tensorflow 2.4.0安装指南
参考这篇文章 显卡3090,ubuntu 20.4 watch -n 1 nvidia-smi Anaconda安装最新的python3.8版本 安装tensorflow2.4版本,使用豆瓣镜像 pip install tensorflow-gpu==2.4 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 安装CUDA 11.2 首先打开下载地址:https://developer.nvidia.com/cuda-toolki原创 2021-01-20 00:22:43 · 2629 阅读 · 0 评论 -
Could not load dynamic library ‘cusolver64_10.dll‘; dlerror: cusolver64_10.dll not found
显卡3090安装tensorflow,根据这篇进行安装的 cuda_11.1.0_456.43_win10.exe pip install tensorflow-gpu==2.4 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 安装tensorflow后,执行下面的语句报错。 import tensorflow as tf print(tf.__version__) print('GPU', tf.test.is_gpu_ava原创 2021-01-18 23:50:38 · 2391 阅读 · 2 评论 -
InvalidArgumentError: Feature: feature (data type: string) is required but could not be found.
模型加载TFRecords文件时一直报这个错误。 tensorflow.python.framework.errors_impl.InvalidArgumentError: Feature: feature (data type: string) i 提示的是feature对应的数据的类型不对,原来是由于生成TFRecords文件指定的key跟读取时的key不同导致的,好吧,那个s被我吃了,细节决...原创 2020-01-16 21:41:04 · 3393 阅读 · 1 评论