File size: 223 Bytes
e99225b
 
 
 
6bf47d6
e99225b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from transformers import PretrainedConfig
from typing import List


class BertConfig(PretrainedConfig):
    model_type="bert"
    
    def __init__(
        self,
        **kwargs,
    ):
        super().__init__(**kwargs)