| |
| |
|
|
| |
| model_info: |
| name: "MLP_Emotion_Predictor" |
| type: "MLP" |
| version: "1.0" |
|
|
| |
| dimensions: |
| input_dim: 7 |
| output_dim: 3 |
|
|
| |
| architecture: |
| |
| hidden_layers: |
| - size: 512 |
| activation: "ReLU" |
| dropout: 0.05 |
| - size: 256 |
| activation: "ReLU" |
| dropout: 0.05 |
| - size: 128 |
| activation: "ReLU" |
| dropout: 0.05 |
| |
| |
| output_layer: |
| activation: "Linear" |
| |
| |
| use_batch_norm: false |
| |
| |
| use_layer_norm: false |
|
|
| |
| initialization: |
| weight_init: "xavier_uniform" |
| bias_init: "zeros" |
|
|
| |
| regularization: |
| |
| weight_decay: 0 |
| |
| |
| dropout_config: |
| type: "standard" |
| rate: 0.2 |
|
|
| |
| model_saving: |
| save_best_only: true |
| save_format: "pytorch" |
| checkpoint_interval: 10 |
|
|
| |
| emotion_model: |
| |
| pad_space: |
| |
| pleasure_range: [-1.0, 1.0] |
| arousal_range: [-1.0, 1.0] |
| dominance_range: [-1.0, 1.0] |
| |
| |
| vitality: |
| range: [0.0, 1.0] |
| normalization: "min_max" |
| |
| |
| prediction: |
| |
| delta_pad_range: [-0.5, 0.5] |
| |
| delta_pressure_range: [-0.3, 0.3] |
| |
| confidence_range: [0.0, 1.0] |
|
|