随笔分类 -  tensorflow

onnx 转 pb 错误记录
摘要:0、版本错误 查看每个版本说明下载安装相关库,类似这种:onnx-tensorflow/support_status_v1_10_0.md at main · onnx/onnx-tensorflow (github.com) 1、RuntimeError: Resize coordinate_tr 阅读全文
posted @ 2022-05-13 16:17 WenJXUST 阅读(596) 评论(0) 推荐(0)
tensorflow2.4 问题记录
摘要:1、训练时出现:could not successfully open dynamic XXX.dll,导致不能使用GPU训练,而使用CPU训练 因为RTX3060 对应 CUDA11.1 对应 tensorflow 2.4 ,而自带的动态库是cusolver64_11.dll,需要cusolver 阅读全文
posted @ 2022-02-11 11:26 WenJXUST 阅读(108) 评论(0) 推荐(0)
tensorflow 2 相对于 tensorflow 1 修改部分记录
摘要:1、to_float,to_int32 # has_min = tf.to_float(tf.reduce_any(pos_num_neg_mask)) has_min = tf.cast(tf.reduce_any(pos_num_neg_mask), tf.float32) 2、tf.log # 阅读全文
posted @ 2022-02-11 11:15 WenJXUST 阅读(273) 评论(0) 推荐(0)
tensorflow whl文件下载网址(贼快)
摘要:一、 tensorflow whl文件下载网址: 1、 https://www.lfd.uci.edu/~gohlke/pythonlibs/ ,网站里有很多python扩展库,但是tensorflow目前最新版本是1.9.0,而我需要的是2.3以上。 2、https://pypi.org/proj 阅读全文
posted @ 2021-10-29 17:20 WenJXUST 阅读(7215) 评论(0) 推荐(0)