# Model description
This model is a decision tree classifier trained to predict obesity levels based on demographic, lifestyle, and diet-related features. The dataset includes variables including age, height, weight, caloric food intake, physical activity, water consumption, smoking behavior, and transportation habits. The target label is the obesity category, which includes seven classes ranging from Insufficient_Weight to Obesity_Type_III. The original decision tree grew very large, so hyperparameter tuning and controlled depth were applied to improve interpretability and reduce overfitting. The decison tree is pretty large even with the hyperparameters, creating a more simplifiedversion would be best before presenting to individuals with no coding background.
## Intended uses & limitations
[More Information Needed]
## Training Procedure
[More Information Needed]
### Hyperparameters
Click to expand
| Hyperparameter | Value |
| :----------------------: | :-----: |
| ccp_alpha | 0.0 |
| class_weight | None |
| criterion | entropy |
| max_depth | 9 |
| max_features | None |
| max_leaf_nodes | None |
| min_impurity_decrease | 0.0 |
| min_samples_leaf | 3 |
| min_samples_split | 10 |
| min_weight_fraction_leaf | 0.0 |
| monotonic_cst | None |
| random_state | 17 |
| splitter | best |
DecisionTreeClassifier(criterion='entropy', max_depth=9, min_samples_leaf=3,min_samples_split=10, random_state=17)In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
DecisionTreeClassifier(criterion='entropy', max_depth=9, min_samples_leaf=3,min_samples_split=10, random_state=17)