qingjun
commited on
Commit
·
c0ea1e7
1
Parent(s):
b50f3ee
fix code
Browse files- config.json +1 -1
- configuration_minimax_m1.py +1 -1
config.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"architectures": [
|
3 |
-
"
|
4 |
],
|
5 |
"attention_dropout": 0.0,
|
6 |
"attn_type_list": [
|
|
|
1 |
{
|
2 |
"architectures": [
|
3 |
+
"MiniMaxM1ForCausalLM"
|
4 |
],
|
5 |
"attention_dropout": 0.0,
|
6 |
"attn_type_list": [
|
configuration_minimax_m1.py
CHANGED
@@ -88,7 +88,7 @@ class MiniMaxM1Config(PretrainedConfig):
|
|
88 |
>>> configuration = model.config
|
89 |
```"""
|
90 |
|
91 |
-
model_type = "
|
92 |
keys_to_ignore_at_inference = ["past_key_values"]
|
93 |
|
94 |
def __init__(
|
|
|
88 |
>>> configuration = model.config
|
89 |
```"""
|
90 |
|
91 |
+
model_type = "MiniMaxM1Model"
|
92 |
keys_to_ignore_at_inference = ["past_key_values"]
|
93 |
|
94 |
def __init__(
|