8 lines
119 B
Python
8 lines
119 B
Python
|
import torch.nn as nn
|
||
|
|
||
|
class SuperModule(nn.Module):
|
||
|
def __init__(self):
|
||
|
super(SuperModule, self).__init__()
|
||
|
|
||
|
|