摘要:
使用 直接通过类的实例对象就可以向类中的forward函数进行参数的传递(当然也可以通过调用forward函数进行传参) import torch.nn as nn class MyModule(nn.Module): def __init__(self): super().__init__() d 阅读全文
摘要:
map() map(function , iterable, ....) : 依次将函数function作用在可迭代的list上,并返回对应的函数返回值,组成新的list(python 2.x) 或者迭代器(python 3.x)。 **注意:**map() 并不会改变iterable 而是会产生一 阅读全文