Applying GAT and LSTM to understand human mobility patterns and anomalies
We use Conda to manage dependencies. The environment.yml
file located in the repository specifies all the required packages for this project.
To create the environment using the provided environment.yml file, run the following command:
conda env create -f environment.yml
This will automatically create a Conda environment named deep-learning and install all required dependencies, including Python 3.9.19.
After creating the environment, activate it with the following command:
conda activate deep-learning
To use this environment in Jupyter notebooks, you need to add it as a Jupyter kernel:
python -m ipykernel install --user --name=deep-learning --display-name "Python (deep-learning)"
Once done, you can select the Python (deep-learning) kernel in Jupyter notebooks.