Update configure.py
Browse files- configure.py +2 -2
configure.py
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
|
| 3 |
from transformers import PretrainedConfig
|
| 4 |
|
| 5 |
-
class
|
| 6 |
-
model_type = "
|
| 7 |
|
| 8 |
def __init__(self, embed_dim=1024, num_heads=8, num_layers=6, vocab_size=151646, **kwargs):
|
| 9 |
super().__init__(**kwargs)
|
|
|
|
| 2 |
|
| 3 |
from transformers import PretrainedConfig
|
| 4 |
|
| 5 |
+
class RecombinationTransformerConfig(PretrainedConfig):
|
| 6 |
+
model_type = "RecombinationTransformer"
|
| 7 |
|
| 8 |
def __init__(self, embed_dim=1024, num_heads=8, num_layers=6, vocab_size=151646, **kwargs):
|
| 9 |
super().__init__(**kwargs)
|