This lesson is being piloted (Beta version)

Introduction to Machine Learning using Python: Setup scikit-learn kernel in Palmetto's JupyterLab

We will use Palmetto cluster for this workshop with Jupyter Lab.

Please follow this guideline to create a new conda environment and install scikit-learn package.

Below is the setup using Jupyter Hub:

image

$ qsub -I -l select=1:ncpus=8:mem=32gb:interconnect=any,walltime=24:00:00

Next:

JupyterHub platform, start from here:

$ module load anaconda3/2020.07-gcc/8.3.1
$ conda create -n skln python=3.8 -y
$ source activate skln
$ conda install numpy pandas scikit-learn seaborn matplotlib -y

=> Note: while using skln conda environment, if we are missing anything, we can always come back and update using pip install or conda install method.

$ conda install jupyter -y
$ python -m ipykernel install --user --name skln --display-name "ML_SKLN"

image