shmelev commited on
Commit
e99225b
·
1 Parent(s): 4a61581

commit from alex

Browse files
Files changed (1) hide show
  1. configuration_bert.py +12 -0
configuration_bert.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import PretrainedConfig
2
+ from typing import List
3
+
4
+
5
+ class ResnetConfig(PretrainedConfig):
6
+ model_type="bert"
7
+
8
+ def __init__(
9
+ self,
10
+ **kwargs,
11
+ ):
12
+ super().__init__(**kwargs)