We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
layer_dict = {'ConvNdBackward': 'Convolution', 'ThresholdBackward': 'ReLU', 'MaxPool2dBackward': 'Pooling', 'AvgPool2dBackward': 'Pooling', 'DropoutBackward': 'Dropout', 'AddmmBackward': 'InnerProduct', 'BatchNormBackward': 'BatchNorm', 'AddBackward': 'Eltwise', 'ViewBackward': 'Reshape', 'ConcatBackward': 'Concat', 'UpsamplingNearest2d': 'Deconvolution', 'UpsamplingBilinear2d': 'Deconvolution', 'SigmoidBackward': 'Sigmoid', 'LeakyReLUBackward': 'ReLU', 'NegateBackward': 'Power', 'MulBackward': 'Eltwise', 'SpatialCrossMapLRNFunc': 'LRN'}
我想知道 layer_dict的对应关系是如何确定的?
我看了pytorch的代码torch/nn/_functions/thnn/auto.py会读取C代码的头文件,加载类。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我想知道 layer_dict的对应关系是如何确定的?
我看了pytorch的代码torch/nn/_functions/thnn/auto.py会读取C代码的头文件,加载类。
The text was updated successfully, but these errors were encountered: