- 博客(3)
- 收藏
- 关注
原创 pytorch中children(),modules(),named_children(),named_modules(),named_parameters(),parameters()的区别
children():返回包含直接子模块的迭代器for module in model.children(): print(module) GRU(34, 144, num_layers=2, batch_first=True, bidirectional=True)Sequential( (0): Linear(in_features=288, out_features=144, bias=True) (1): ReLU() (2): Linear(in_fe...
2021-03-27 20:36:10
614
1
原创 如何将交叉引用参考文献批量变为上标
第一步:Ctrl+H第二步:查找内容处:[^#]第三步:鼠标点击到“替换为”第四步:“Ctrl”“Shift”“=”,框框下就会显示“上标”第五步:全部替换
2021-01-24 11:41:18
17055
5
原创 【Python笔记】判断list是否为空
Python中判断list是否为空有以下两种方式:方式一:1 list_temp = []2 if len(list_temp):3 # 存在值即为真4 else:5 # list_temp是空的方式二:1 list_temp = []2 if list_temp:3 # 存在值即为真4 else:5 # list_temp是空的以上两种方法均可以判断出 list_temp 列表是否是空列表,第二个方法要优于第一个方法,在Python
2020-09-11 11:05:45
560
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人