Official implementation of our 2022 IEEE LA-CCI paper Student Dropout Prediction using 1D CNN-LSTM with Variational Autoencoder Oversampling by Eduarda C. Coppo, Rhuan S. Caetano, Leandro M. de Lima and Renato A. Krohling.
conda install numpy pandas matplotlib tensorflow==2.2.0 plotly tabulate scikit-learn seaborn keras ipython jupyter
pip install optuna
conda create --name <env> --file env.yml
TIMESTEPS = 4
DATA_DIM = 26
NUM_CLASSES = 2
We borrowed and modified code from "Autoencoders and Generative Adversarial Networks for Anomaly Detection for Sequences" by Stephanie Ger and Diego Klabjan. We would like to expresse our gratitdue for the authors of these repositeries.