Upload MLP
Browse files- model.safetensors +1 -1
- modeling_mlp.py +1 -1
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 12861648
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d62cc165dfe2143f05f3a9ed7e01645f2cfd9f192092003478ee0c87e77a046
|
3 |
size 12861648
|
modeling_mlp.py
CHANGED
@@ -4,6 +4,7 @@ from transformers import PreTrainedModel
|
|
4 |
|
5 |
from configuration_mlp import MLPConfig
|
6 |
|
|
|
7 |
class MLP(PreTrainedModel):
|
8 |
config_class = MLPConfig
|
9 |
|
@@ -16,4 +17,3 @@ class MLP(PreTrainedModel):
|
|
16 |
return x
|
17 |
|
18 |
MLP.register_for_auto_class("AutoModel")
|
19 |
-
|
|
|
4 |
|
5 |
from configuration_mlp import MLPConfig
|
6 |
|
7 |
+
|
8 |
class MLP(PreTrainedModel):
|
9 |
config_class = MLPConfig
|
10 |
|
|
|
17 |
return x
|
18 |
|
19 |
MLP.register_for_auto_class("AutoModel")
|
|