Skip to content

rstol/iml-demos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro to ML Notebooks

Environment (Optional)

Create a conda environment where everything should run.

$ conda create -n intro-ml python=3.7 anaconda
$ conda activate intro-ml

Install requirements

To install the requirements

$ pip install -r requirements.txt

Run a jupyter notebook server

Start a jupyter notebook server by running

$ jupyter notebook 

Run a jupyter notebook in a remote cluster

Go to Server using

$ ssh username@ip_address 

On remote terminal run:

$ jupyter notebook --no-browser --port=7800 

On your local terminal run explained:

$ ssh -N -f -L localhost:8001:localhost:7800 username@ip_address 

Open web browser on local machine and go to http://localhost:8001/

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published