Dependencies:
- Pandas
pip3 install pandas
- Numpy
pip3 install numpy
- PIL
pip3 install pillow
- TKinter
pip3 install tk
- Pytorch
pip3 install pytorch
- OpenAI Gym (for RL)
pip3 install gym==0.26.2
- Timm (for SOTA computer vision models)
pip3 install timm
To run, type python3 main.py in the terminal.
Alternatively: Set up new Conda environment with:
conda config --add channels conda-forge
conda create -n BWSI_2025 python=3.9 pandas numpy pillow tk pytorch pyyaml torchvision gym timm