Attempt at using ML and DL to perform NHL fantasy drafts for the 2024-2025 Season
Development was performed on Fedora 40 with no dedicated GPU. Adapt the below commands to your preferred platform.
conda create -n mlhl-env python=3.12
conda activate mlhl-envScraping is unnecessary unless you want to collect your own dataset. CSV files are available and scraping can be skipped if desired.
conda install selenium pandas
python -m pip install webdriver-manager
python -m pip install --upgrade seleniumconda install pytorch torchvision torchaudio cpuonly -c pytorch
python -m pip install pytorch-forecasting
conda install tensorboardconda install matplotlib scikit-learnYou can optinally install Jupyter to visualize the data (.ipynb to be uploaded shortly)
conda install jupyter