Delete configuration_autoencoder.py
Browse files- configuration_autoencoder.py +0 -22
configuration_autoencoder.py
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
from transformers import PretrainedConfig
|
2 |
-
|
3 |
-
class AutoEncoderConfig(PretrainedConfig):
|
4 |
-
model_type = "autoencoder"
|
5 |
-
|
6 |
-
def __init__(
|
7 |
-
self,
|
8 |
-
input_dim=None,
|
9 |
-
latent_dim=None,
|
10 |
-
layer_types=None,
|
11 |
-
dropout_rate=None,
|
12 |
-
num_layers=None,
|
13 |
-
compression_rate=None,
|
14 |
-
**kwargs
|
15 |
-
):
|
16 |
-
super().__init__(**kwargs)
|
17 |
-
self.input_dim = input_dim
|
18 |
-
self.latent_dim = latent_dim
|
19 |
-
self.layer_types = layer_types
|
20 |
-
self.dropout_rate = dropout_rate
|
21 |
-
self.num_layers = num_layers
|
22 |
-
self.compression_rate = compression_rate
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|