File size: 225 Bytes
7b7f3b1 |
1 2 3 4 5 6 7 8 |
from transformers import BertConfig
class CustomBertConfig(BertConfig):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.custom_config = "This is a custom configuration class"
|