tommymarto
commited on
Commit
·
f797743
1
Parent(s):
7762514
fixed typing issue
Browse files- modeling_mcqbert.py +2 -0
modeling_mcqbert.py
CHANGED
@@ -4,6 +4,8 @@ import torch
|
|
4 |
from .configuration_mcqbert import MCQBertConfig
|
5 |
|
6 |
class MCQStudentBert(BertModel):
|
|
|
|
|
7 |
def __init__(self, config: MCQBertConfig):
|
8 |
super().__init__(config)
|
9 |
|
|
|
4 |
from .configuration_mcqbert import MCQBertConfig
|
5 |
|
6 |
class MCQStudentBert(BertModel):
|
7 |
+
config_class = MCQBertConfig
|
8 |
+
|
9 |
def __init__(self, config: MCQBertConfig):
|
10 |
super().__init__(config)
|
11 |
|