Upload sCT
Browse files- config.json +1 -1
- config.py +1 -1
config.json
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
"layer_norm_eps": 1e-05,
|
19 |
"mask_token_id": 5,
|
20 |
"max_positions": 20480,
|
21 |
-
"model_type": "
|
22 |
"num_cells": 50,
|
23 |
"num_downsamples": 8,
|
24 |
"num_hidden_layers_head": 1,
|
|
|
18 |
"layer_norm_eps": 1e-05,
|
19 |
"mask_token_id": 5,
|
20 |
"max_positions": 20480,
|
21 |
+
"model_type": "sCellTransformer",
|
22 |
"num_cells": 50,
|
23 |
"num_downsamples": 8,
|
24 |
"num_hidden_layers_head": 1,
|
config.py
CHANGED
@@ -6,7 +6,7 @@ from transformers import PretrainedConfig
|
|
6 |
|
7 |
@dataclass
|
8 |
class sCTConfig(PretrainedConfig): # noqa: N801
|
9 |
-
model_type = "
|
10 |
|
11 |
def __init__(self, **kwargs): # type: ignore
|
12 |
super().__init__()
|
|
|
6 |
|
7 |
@dataclass
|
8 |
class sCTConfig(PretrainedConfig): # noqa: N801
|
9 |
+
model_type = "sCellTransformer"
|
10 |
|
11 |
def __init__(self, **kwargs): # type: ignore
|
12 |
super().__init__()
|