This model classifies facial emotions into 7 categories: angry, disgust, fear, happy, neutral, sad, surprise.
It is based on transfer learning using MobileNetV2 and fine-tuned on the FER2013 dataset.
Confusion matrix and accuracy/loss curves are included.
1from tensorflow.keras.models import load_model
2model = load_model("final_emotion_model_finetuned.h5")