1. tensorflow相关版本问题
https://blog.csdn.net/FL1768317420/article/details/134840200
tips:
- 2.x~2.10,cpu&gpu一体; 2.10以上,cpu&gpu一体仅支持linux,故tf-gpu在win的最高版本为2.10。
- 2.x版本兼容1.x代码 引用:
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
tf.reset_default_graph()
tf.compat.v1.disable_eager_execution()
- tensorflow & keras 版本对应问题:
tf 2.x~2.10内置keras API,调包时:import tensorflow.keras - 查看设备
print(device_lib.list_local_devices())
2. jupyter notebook设置:
2.1 自动补全、目录等
pip install jupyter_contrib_nbextensions
jupyter nbextensions_configurator enable --user
2.2 虚拟环境kernel
切换到需要被添加到kernel的虚拟环境,输入以下命令
pip install ipykernel
python -m ipykernel install --user --name=kernelname --display-name showname
3. pycharm相关
3.1 设置保存控制台输出、生成log
https://blog.csdn.net/qq_39564555/article/details/112135970