Thanks for interviewing with us! To make the most of our time together, please set up your development environment beforehand.
- Python 3.12+
- The following Python packages:
torchnumpypandasscikit-learnmatplotlib
Install the required packages:
pip install torch numpy pandas scikit-learn matplotlibOr if you already have the project:
pip install -r requirements.txtRun the following to confirm everything is installed correctly:
python -c "import torch; import numpy; import pandas; import sklearn; import matplotlib; print('All packages installed successfully')"You should see: All packages installed successfully
- A virtual environment is recommended but not required.
- GPU support is not required — CPU is fine.
- We will provide the project code at the start of the session.