(self, hidden_dim, empty_grad=False)
| 256 | class PLD_SimpleModel(SimpleModel): |
| 257 | |
| 258 | def __init__(self, hidden_dim, empty_grad=False): |
| 259 | super(PLD_SimpleModel, self).__init__(hidden_dim, empty_grad) |
| 260 | |
| 261 | def forward(self, x, y, **kwargs): |
| 262 | pld = kwargs.get('progressive_layer_drop', False) |