俊逸荷花

文章
3
资源
0
加入时间
2年10月17天

Python pandas DataFrame操作

官方文档地址: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.html# coding=utf-8import pandas as pdimport numpy####### 创建dfdic = { 'name': ['zhangsan', 'lisi'], ...

pytorch方法测试——卷积(二维)

测试代码:import torchimport torch.nn as nnm = nn.Conv2d(2, 2, 3, stride=2)input = torch.randn(1, 2, 5, 7)output = m(input)print("输入图片:")print(input)print("卷积的权重:")print(m.weight)print("卷积的偏重:")...