Update configuration_my_gpt.py
Browse files- configuration_my_gpt.py +3 -0
configuration_my_gpt.py
CHANGED
|
@@ -23,3 +23,6 @@ class MyGPTConfig(PretrainedConfig):
|
|
| 23 |
self.n_layers = n_layers
|
| 24 |
self.drop_rate = drop_rate
|
| 25 |
self.qkv_bias = qkv_bias
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
self.n_layers = n_layers
|
| 24 |
self.drop_rate = drop_rate
|
| 25 |
self.qkv_bias = qkv_bias
|
| 26 |
+
self.is_decoder = True
|
| 27 |
+
self.is_encoder_decoder = False
|
| 28 |
+
|