(self, *args, **kwargs)
| 179 | # https://github.com/yl4579/StyleTTS2/blob/main/Utils/PLBERT/util.py |
| 180 | class CustomAlbert(AlbertModel): |
| 181 | def forward(self, *args, **kwargs): |
| 182 | outputs = super().forward(*args, **kwargs) |
| 183 | return outputs.last_hidden_state |