|-- Analysis.ipynb # Some Data Analysis Done
|-- Baseline.py # A Visit Frequency-based Predictive Model
|-- CustomTransformer_with_YJMob100K.py # Custom Transformer
|-- LSTM_with_YJmob100K.py # Built-in LSTM
|-- README.md
|-- Transformer_with_YJMob100K.py # Built-in Transformer
|-- Visualization.ipynb # Image visualizaitons for final presentation
|-- input_data_processing.ipynb # Notebook file for Data Processing
python Baseline.py
https://sites.google.com/nyu.edu/nyu-hpc/accessing-hpc
git clone https://github.com/ANNIZHENG/MLModel_Eval_with_YJMob100K.git
srun -t 2:00:00 -c 4 --mem=16000 --gres=gpu:1 --pty /bin/bash
module spider cuda
module spider python
module load cuda/11.6.2
module load python/intel/3.8.6
virtualenv --system-site-packages -p python3 ./venv
pip install torch
source ./venv/bin/activate
python <FILE_NAME>.py