Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.94 KB

howtorun.md

File metadata and controls

60 lines (40 loc) · 2.94 KB

How to view/ Run these Notebooks

These tutorials are written as Jupyter Notebooks

Read-only

If you want to take a quick look PDFs or markdowns have been generated for each notebook requiring no software requirements

  1. ConvolutionalNeuralNetworks
  2. Physics_Informed_Neural_Networks
  3. GaussianProcesses
  4. RandomForests

Running on your laptop or server you have access to.

To run on your machine first clone this repo via your preferred method e.g. cloning via terminal or cloning via gitbash (windows)

Some notebooks require additional code from other git repos

In your terminal (Mac or Linux) or your gitbash terminal run

git clone --recursive [email protected]:cemac/LIFD_ConvolutionalNeuralNetworks.git

or if you have already cloned but forgotten to get the submodules:

cd LIFD_ENV_ML_NOTEBOOKS
git submodule update --init --recursive

Cloning individual tutorials

  1. git clone --recursive [email protected]:cemac/LIFD_ConvolutionalNeuralNetworks.git
  2. git clone --recursive [email protected]:cemac/LIFD_RandomForests.git
  3. git clone --recursive [email protected]:cemac/LIFD_GaussianProcesses.git
  4. git clone --recursive [email protected]:cemac/LIFD_Physics_Informed_Neural_Networks.git

How to Run

These notebooks can run with the resources provided and the anaconda environment setup. If you are familiar with anaconda, jupyter notebooks and GitHub. Simply clone this repository and run it within your Jupyter Notebook setup.

Requirements

Python

It is recommended you use anaconda to manage the python packages required. Sore Machine learning libraries are large and if you only wish to run one notebook consider installing the environment provided for that specific notebook. Otherwise, you can install all required packages running the following commands.

conda env create -f <env-file>.yml
conda activate <env-name>
# save yourself some space with one extra command
conda clean -a
jupyter-notebook # launches the notebook server

further information can be found in the jupyter_notebooks guide. For set up and Troubleshooting tips.

Binder

Notebooks that are binder compatible have a binder launch button in their readme.