nn.Linear
relu?
concisely
- inherit from nn.Module
- init layer in __init__
- implement forward()
step 1
step 2
step 3
nn.ReLU v.s. F.relu()
- class-style API
- 因此需要先实例化
- function-style API
- 因此可以直接传参
2024-03-05 08:31:18
下一篇:9 激活函数简单原理及使用