python学习
查看GPU服务器资源:nvidia-smi
遇到有关tensorflow版本问题:运行模型代码比较久远,使用的是tensorflow.v1版本,会出现:AttributeError: module ‘tensorflow’ has no attribute ‘Session’(AttributeError: module ‘tensorflow’ has no attribute ‘XXXXXXX’);这种错误。
解决方法:
(1)将:
import tensorflow as tf
换成:
import tensorflow.compat.v1 as tf
并添加:tf.disable_v2_behavior()
(2)涉及到的代码语句较少,也可以在错误语句的tf后面都加上"compat.v1."实现执行v1的代码。
激活GPU服务器中的pytorch:
conda activate pytorch1.6
VGG-16,卷积使用3x3x64,由于在前后都补充元素,所以下一层的特征图大小不变。
224x224x3 经过 3x3x64 得到 224x224x64.
后续内容待添加 … …