KaiquanMah commited on
Commit
f5762fa
·
verified ·
1 Parent(s): 4ebdabe

vae config for tracking

Browse files
Files changed (1) hide show
  1. config.json +40 -0
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "vae",
3
+ "architectures": ["VariationalAutoencoder"],
4
+ "model_name": "VAE-Banking77-OpenIntentClassification",
5
+
6
+ "input_dim": 768,
7
+ "hidden_dim": 256,
8
+ "latent_dim": 64,
9
+
10
+ "encoder_config": {
11
+ "layers": [
12
+ {"type": "Linear", "in_features": 768, "out_features": 256},
13
+ {"type": "ReLU"}
14
+ ],
15
+ "mu_layer": {"type": "Linear", "in_features": 256, "out_features": 64},
16
+ "logvar_layer": {"type": "Linear", "in_features": 256, "out_features": 64}
17
+ },
18
+
19
+ "decoder_config": {
20
+ "layers": [
21
+ {"type": "Linear", "in_features": 64, "out_features": 256},
22
+ {"type": "ReLU"},
23
+ {"type": "Linear", "in_features": 256, "out_features": 768}
24
+ ]
25
+ },
26
+
27
+ "training_config": {
28
+ "dataset": "PolyAI/banking77",
29
+ "loss_weights": {
30
+ "reconstruction_loss": 0.5,
31
+ "kl_divergence": 0.5
32
+ },
33
+ "validation_metric": "reconstruction_loss"
34
+ },
35
+
36
+ "library_name": "pytorch",
37
+ "torch_dtype": "float32",
38
+ "transformers_version": null,
39
+ "created_date": "2025-08-11"
40
+ }