Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 793 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 793 Bytes

Framework for performing Adaptive DoE with experiments

Installation

The code uses PARyOpt to adaptively sample from a specified experimental space.

git clone https://github.com/pbssarath/adaptive_doe_exp.git
git submodule update --init --recursive
python3.7 -m venv venv
source venv/bin/activate.sh
pip install -r requirements.txt

To use with conda, use

conda create --name <env>
conda activate <env>
conda install --yes --file requirements.txt

This will set up PARyOpt as well as the codes for running adaptive DoE.

Updating

To update the code from the repository, go to the repository home directory adaptive_doe_exp and perform the following:

git pull
git submodule update --recursive