Model Architecture
Network Design
The neural network was designed to balance capacity and generalization for a 13-feature tabular dataset.- Loss function: Binary Cross-Entropy
- Optimizer: Adam
- Regularization: Dropout after each hidden layer
Why 3 Hidden Layers?
The choice is grounded in the bias-variance trade-off:- Too few layers → underfitting (high bias), the model cannot capture meaningful patterns.
- Too many layers → overfitting (high variance), the model memorizes training data.