
tensorflow
文章平均质量分 62
AI算法网奇
本人是一名资深算法工程师,优快云博客专家。多年一线算法研发经验 主要研究方向为三维重建、多模态模型。希望把我的经验和知识带给每一个喜欢钻研朋友,为中国人工智能行业添砖加瓦!
展开
-
TensorFlow ImportError: initialization failed
TensorFlow ImportError: initialization failed原创 2022-11-27 21:30:39 · 9437 阅读 · 0 评论 -
tensorflow pb与tflite互转
tensorflow pb与tflite互转原创 2022-11-26 10:11:49 · 1846 阅读 · 0 评论 -
tensorflow模型转换
tensorflow模型转换原创 2022-11-22 00:11:32 · 313 阅读 · 0 评论 -
Trying to decode PNG format using DecodeBmp op. Use `decode_png` or `decode_image` instead
Trying to decode PNG format using DecodeBmp op. Use `decode_png` or `decode_image` instead原创 2022-11-18 01:13:50 · 1403 阅读 · 1 评论 -
tensorflow 读取图片 Dataset用法
tensorflow读取图片原创 2022-11-17 01:24:19 · 1361 阅读 · 0 评论 -
Tensorflow加载预训练模型和保存模型(ckpt文件)以及迁移学习finetuning
使用tensorflow过程中,训练结束后我们需要用到模型文件。有时候,我们可能也需要用到别人训练好的模型,并在这个基础上再次训练。这时候我们需要掌握如何操作这些模型数据。看完本文,相信你一定会有收获!1 Tensorflow模型文件我们在checkpoint_dir目录下保存的文件结构如下: |--checkpoint_dir | |--checkpoint | |--MyModel.meta | |--MyModel.data-00000-of-0..转载 2021-08-13 11:16:27 · 8455 阅读 · 0 评论 -
file is too short to be an sstable [[Node: save/RestoreV2 = RestoreV2[dtypes=[DT_FLOAT, DT_FLOAT, DT
file is too short to be an sstable [[Node: save/RestoreV2 = RestoreV2[dtypes=[DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT, DT_FLOAT, ..., DT_FLOAT, DT_FLOAT, DT_Ftf版加载模型报错:https://github.com/YadiraF/PRNettf版本1.8.0 1.9.0 1.15.0都报错:解决方法还没找到...原创 2021-08-12 16:01:12 · 2233 阅读 · 0 评论 -
tensorflow.python.framework.errors_impl.DataLossError:
tensorflow.python.framework.errors_impl.DataLossError:tensorflow.python.framework.errors_impl.DataLossError: not an sstable(bad magic number)这个错误是因为--input_checkpoint的名字搞错了,后面的.data-00000-of-00001不应该写。...转载 2021-08-12 15:02:19 · 3837 阅读 · 0 评论 -
save_path is not a valid checkpoint
save_path is not a valid checkpoint ckpt = get_checkpoint_state(checkpoint_dir, latest_filename) if ckpt and ckpt.model_checkpoint_path: # Look for either a V2 path or a V1 path, with priority for V2. v2_path = _prefix_to_checkpoint_path(..原创 2021-08-11 22:14:09 · 2232 阅读 · 0 评论 -
DLL load failed while importing _pywrap_tensorflow_internal
前往微软官网下载Visual Studio C++即可:https://support.microsoft.com/zh-cn/help/2977003/the-latest-supported-visual-c-downloads转载 2021-01-23 18:11:14 · 3222 阅读 · 0 评论 -
you should specify the `steps` argument
you should specify the steps argumentself.model.predict(img_tensor,steps = 1)原创 2020-12-20 22:42:34 · 3347 阅读 · 0 评论 -
tenserflow.js 环境搭建
1.安装nodejshttp://nodejs.cn/download/安装yarnnpm install -g yarn查看版本:yarn --version2.一、安装 有两种方法可以在你的项目中引入tensorflow.js。一种是通过script标签引入,另外一种就是通过npm进行安装。(1)通过script标签,如下:复制代码<!DOCTYPE html><html lang="en"><head> ...原创 2020-11-21 10:38:49 · 2531 阅读 · 0 评论 -
Could not load dynamic library ‘cudart64_101.dll‘
tenforboard用到了tensorflow2020-09-18 22:59:53.641152: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'cudart64_101.dll'; dlerror: cudart64_101.dll not found2020-09-18 22:59:53.642901: I tensorflow/stream_...原创 2020-09-19 00:19:45 · 2492 阅读 · 0 评论 -
tensorflow 查看graph
查看tensorflow里面Graph中所有的tensorprint([n.name for n in graph.as_graph_def().node])原创 2020-07-16 15:52:23 · 2759 阅读 · 0 评论 -
Cannot assign a device for operation
Cannot assign a device for operation参考:https://blog.youkuaiyun.com/sjwzdh/article/details/103301380/解决方法是设置配置里面的allow_soft_placement=Trueconfig = tf.ConfigProto(allow_soft_placement=True)with tf.Session(config=config) as sess: saver.restore(sess, "...原创 2020-07-13 22:58:56 · 4430 阅读 · 0 评论 -
tf.get_default_graph().get_name_scope()
tf.get_default_graph().get_name_scope()tf 1.15.0版本可能有这个2.2.0没有这个函数原创 2020-07-13 22:53:01 · 2877 阅读 · 0 评论 -
tensorflow安装笔记
tensorflow安装笔记原创 2020-07-13 03:45:47 · 3227 阅读 · 1 评论 -
module ‘tensorflow‘ has no attribute ‘Tensor‘
module 'tensorflow' has no attribute 'Tensor'原创 2020-07-13 03:11:59 · 4966 阅读 · 0 评论 -
No module named 'tensorflow.contrib'
No module named 'tensorflow.contrib'安装tensorflow 1.14pip install tensorflow==1.14.0原创 2020-06-02 10:30:23 · 5909 阅读 · 0 评论 -
Unknown: Failed to get convolution algorithm. This is probably because cuDNN
Unknown: Failed to get convolution algorithm. This is probably because cuDNNhttps://www.jianshu.com/p/e13aa15f35da我的解决办法:添加下面两行import osos.environ['CUDA_VISIBLE_DEVICES'] = '/gpu:0'方法一:可能是Tensorflow-gpu版本太高,我报错时为1.12,可以将其降为1.9.0pip install .原创 2020-06-01 23:47:29 · 8057 阅读 · 7 评论 -
tensorflow keras 对应版本
tensorflow 对应 的keras 版本通过留言得到的版本确认信息为:1.8 和 keras 2.1.51.8 和 keras 2.1.6...原创 2020-06-01 23:37:50 · 25765 阅读 · 3 评论 -
imp.load_module('_pywrap_tensorflow_internal'
imp.load_module('_pywrap_tensorflow_internal'安装tensorflow2.1 后报下面的错误:imp.load_module(’_pywrap_tensorflow_internal’, fp, pathname, description)解决办法:windows CPU 不支持tensorflow2.2 ,所以删了,重新安装的tensorflow2.0命令如下,国内镜像,安装很快。pip install --upgrade --pre ...原创 2020-06-01 18:38:09 · 2880 阅读 · 0 评论 -
Failed to load the native TensorFlow runtime.
Failed to load the native TensorFlow runtime.跑CPU版的object-detection的示例程序,导入tensorflow时出现:Failed to load the native TensorFlow runtime.解决办法就是:pip install --upgrade --ignore-installed tensorflow更新一下tensorflow就好了原文链接:https://blog.youkuaiyun.com/sy201...原创 2020-06-01 18:12:30 · 2967 阅读 · 0 评论 -
tensorflow兼容问题
import tensorflow.compat.v1.keras.backend as keras_backend# import keras.backend as keras_backend1.x版本:importtensorflow tf2.x版本:importtensorflow.compat.v1astftf.disable_v2_behavior()原创 2020-06-01 08:44:41 · 2692 阅读 · 0 评论 -
reduce_sum() got an unexpected keyword argument 'keep_dims'
reduce_sum() got an unexpected keyword argument 'keep_dims'2.0.0版本出的问题:解决:normalize = tf.compat.v1.reduce_sum(target_exp, axis, keep_dims=True)softmax = tf.compat.v1.div(target_exp, normal...原创 2020-02-23 11:29:39 · 6577 阅读 · 5 评论 -
dso_loader.cc:55] Could not load dynamic library ‘cudart64_100.dll‘
dso_loader.cc:55] Could not load dynamic library 'cudart64_100.dll'dso_loader.cc:55] Could not load dynamic library 'cudart64_100.dll'搜索或下载:cudart64_100.dll下载后放到C:\Program Files\NVIDIA GP...原创 2019-12-15 18:04:10 · 3250 阅读 · 0 评论 -
ERROR: tensorboard 1.14.0 has requirement setuptools>=41.0.0, but you'll have setuptools 39.1.0 whic
ERROR: tensorboard 1.14.0 has requirement setuptools>=41.0.0, but you'll have setuptools 39.1.0 which is incompatible.原因: setuptools 版本太低办法:更新setuptools版本 输入pip install --upgrade setupto...原创 2019-12-15 17:51:46 · 2843 阅读 · 0 评论 -
ModuleNotFoundError: No module named ‘tensorflow.keras‘
ModuleNotFoundError: No module named 'tensorflow.keras'解决方法:安装TensorFlow_gpu 2.0安装后又报错:Could not load dynamic library 'cudart64_100.dll'; dlerror: cudart64_100.dll not found可能对cuda也...原创 2019-12-15 16:56:38 · 3635 阅读 · 1 评论 -
tensorflow学习笔记二——建立一个简单的神经网络拟合二次函数
tensorflow学习笔记二——建立一个简单的神经网络拟合二次函数转载 2017-07-11 00:05:05 · 8211 阅读 · 0 评论 -
Tensorflow学习: 乘法demo
Tensorflow学习: 乘法demo原创 2017-07-11 11:24:46 · 3141 阅读 · 0 评论 -
Tensorflow tf.placeholder函数
Tensorflow tf.placeholder函数原创 2017-07-11 11:29:15 · 2717 阅读 · 0 评论 -
Tensorflow快速入门2--实现手写数字识别
Tensorflow快速入门2–实现手写数字识别原创 2017-07-12 09:52:32 · 2982 阅读 · 0 评论 -
9行Python代码搭建神经网络
9行Python代码搭建神经网络转载 2017-07-13 23:03:53 · 9572 阅读 · 6 评论 -
TensorFlow 图像数据预处理及可视化
TensorFlow 图像数据预处理及可视化转载 2017-08-17 00:19:05 · 4755 阅读 · 0 评论 -
使用VGG训练Imagenet
使用VGG训练Imagenet原创 2017-08-18 21:03:11 · 6875 阅读 · 1 评论 -
ssd目标检测整理
ssd目标检测整理原创 2017-08-18 22:51:23 · 5158 阅读 · 0 评论 -
TensorFlow实现案例汇集:代码+笔记
TensorFlow实现案例汇集:代码+笔记原创 2017-08-18 23:34:28 · 2392 阅读 · 0 评论 -
No Module Named '_pywrap_tensorflow_internal'
No Module Named '_pywrap_tensorflow_internal'原创 2017-08-19 19:00:42 · 7611 阅读 · 0 评论 -
Win10 TensorFlow(gpu)安装详解
Win10 TensorFlow(gpu)安装详解转载 2017-08-20 00:08:46 · 3567 阅读 · 0 评论 -
win10 安装tensorflow
win10 Pip安装tensorflow原创 2017-08-20 00:06:44 · 2647 阅读 · 0 评论