Upload model
Browse files- config.json +2 -2
- configuration_wavjepa.py +2 -2
config.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
"dropout": 0.0,
|
| 20 |
"layer_norm_eps": 1e-06,
|
| 21 |
"nhead": 12,
|
| 22 |
-
"norm_first":
|
| 23 |
},
|
| 24 |
"encoder_cfg": {
|
| 25 |
"enable_nested_tensor": false,
|
|
@@ -34,7 +34,7 @@
|
|
| 34 |
"dropout": 0.0,
|
| 35 |
"layer_norm_eps": 1e-06,
|
| 36 |
"nhead": 12,
|
| 37 |
-
"norm_first":
|
| 38 |
},
|
| 39 |
"extractor_config": {
|
| 40 |
"conv_bias": false,
|
|
|
|
| 19 |
"dropout": 0.0,
|
| 20 |
"layer_norm_eps": 1e-06,
|
| 21 |
"nhead": 12,
|
| 22 |
+
"norm_first": false
|
| 23 |
},
|
| 24 |
"encoder_cfg": {
|
| 25 |
"enable_nested_tensor": false,
|
|
|
|
| 34 |
"dropout": 0.0,
|
| 35 |
"layer_norm_eps": 1e-06,
|
| 36 |
"nhead": 12,
|
| 37 |
+
"norm_first": false
|
| 38 |
},
|
| 39 |
"extractor_config": {
|
| 40 |
"conv_bias": false,
|
configuration_wavjepa.py
CHANGED
|
@@ -19,7 +19,7 @@ class WavJEPAConfig(PretrainedConfig):
|
|
| 19 |
encoder_d_model: int = 768,
|
| 20 |
encoder_nhead : int = 12,
|
| 21 |
encoder_batch_first = True,
|
| 22 |
-
encoder_norm_first =
|
| 23 |
encoder_bias = True,
|
| 24 |
encoder_mlp_ratio = 4.0,
|
| 25 |
encoder_dropout = 0.0,
|
|
@@ -29,7 +29,7 @@ class WavJEPAConfig(PretrainedConfig):
|
|
| 29 |
decoder_d_model: int = 384,
|
| 30 |
decoder_nhead : int = 12,
|
| 31 |
decoder_batch_first = True,
|
| 32 |
-
decoder_norm_first =
|
| 33 |
decoder_bias = True,
|
| 34 |
decoder_mlp_ratio = 4.0,
|
| 35 |
decoder_dropout = 0.0,
|
|
|
|
| 19 |
encoder_d_model: int = 768,
|
| 20 |
encoder_nhead : int = 12,
|
| 21 |
encoder_batch_first = True,
|
| 22 |
+
encoder_norm_first = False,
|
| 23 |
encoder_bias = True,
|
| 24 |
encoder_mlp_ratio = 4.0,
|
| 25 |
encoder_dropout = 0.0,
|
|
|
|
| 29 |
decoder_d_model: int = 384,
|
| 30 |
decoder_nhead : int = 12,
|
| 31 |
decoder_batch_first = True,
|
| 32 |
+
decoder_norm_first = False,
|
| 33 |
decoder_bias = True,
|
| 34 |
decoder_mlp_ratio = 4.0,
|
| 35 |
decoder_dropout = 0.0,
|