①安装tensorflow后,测试安装是否成功,结果报错:
SystemError:
原因:安装tensorflow时没有选择版本(我是输入pip install tensorflow安装的),系统默认安装最新版本2.8,而python版本为3.7,不兼容导致,tensorflow与python版本要对应
解决办法:对tensorflow降级重新安装(pip install tensorflow-GPU==2.5),安装2.5版本的tensorflow,
②安装过程中遇到新报错:
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
cryptography 3.3.2 requires cffi>=1.12, but you have cffi 1.11.5 which is incompatible.
百度一下,安装joblib(pip install joblib)和scikit-learn(pip install scikit-learn)后重新安装tensorflow成功
③在Jupyter运行代码时又报错:
module 'keras.engine.base_layer' has no attribute 'BaseRandomLayer'
module 'tensorflow.compat.v2.internal.tracking' has no attribute 'no_automatic_dependency_tracking'
重新将tensorflow降级到2.0,keras降级到2.3,tensorflow与keras版本也要对应
④打开anaconda-jupyter运行代码,居然报错找不到包,原因是anaconda不同环境不共享包,
打开cmd,输入jupyter notebook运行,代码运行正常!
Original: https://blog.csdn.net/weixin_54693379/article/details/124656688
Author: 深度学习,深度睡眠
Title: 安装tensorflow过程中的报错Original: https://blog.csdn.net/weixin_54693379/article/details/124656688
Author: 深度学习,深度睡眠
Title: 安装tensorflow过程中的报错

python&tensorflow2.0各种数组详解及相互转化
![[pandas基础]Pandas DataFrame进阶操作](https://www.itcode1024.com/wp-content/themes/begin/prune.php?src=https://www.itcode1024.com/wp-content/themes/begin/img/loading.png&w=280&h=210&a=&zc=1)
[pandas基础]Pandas DataFrame进阶操作

TensorFlow与深度学习

【Matlab代码】基于小波分析的音频信号的特征识别

kashgari的Python项目-NLP框架(实体识别(NER)、词性标注(PoS)和文本分类任务)

lms语音降噪matlab实现_基于MatlabGUI的语音信号去噪处理

librosa | 系统实战(一 ~ 四)

09-CNN手写数字识别

【语音增强】基于matlab多维谱自适应小波语音信号去噪【含Matlab源码 1972期】

ViT:视觉Transformer backbone网络ViT论文与代码详解

服务器配置深度学习环境:Tensorflow2.4.1 + Keras2.4.3 + Cuda11.2 + Cudnn8.0

【综述】基于Transformer的视频语言预训练

深度学习100例 | 第41天:语音识别 – PyTorch实现

TensorFlow常见方法
