/ICERM_workshop

Notebooks for the ICERM workshop tutorials on surrogate models.

Primary LanguageJupyter NotebookMIT LicenseMIT

ICERM_workshop

Binder

Notebooks for the ICERM workshop tutorials on surrogate models.

You can find recordings of the tutorials here:
Learning high-fidelity gravitational-wave models from numerical relativity data
Numerical relativity models with gwsurrogate, SurfinBH, and binaryBHexp

Instructions

You have three options:

1. Binder

You can use Binder to run the notebooks directly from your browser. This should work without having to install anything.

2. Install dependencies yourself

You will need to install some depenencies to run the notebooks. These are listed here. All of these are available through either conda or pip.

Once these are installed, you can open the notebooks by doing:

git clone git@github.com:vijayvarma392/ICERM_workshop.git

OR

git clone https://github.com/vijayvarma392/ICERM_workshop.git

followed by:

cd ICERM_workshop
jupyter notebook .

3. Conda

If you have conda, you can get the environment by doing:

git clone git@github.com:vijayvarma392/ICERM_workshop.git

OR

git clone https://github.com/vijayvarma392/ICERM_workshop.git

followed by:

cd ICERM_workshop
conda env create -f environment.yml

This will create an environment called sur_env. Which you can activate by doing:

conda activate sur_env

If this is the first time you are using environments, you may first need to do somthing like:

conda init bash

Once the environment is activated, you should be able to open the notebooks from within the ICERM_workshop repo using:

jupyter notebook .

To exit from this environment, do:

conda deactivate