Probabilistic response model fitting with interactive tools
Project description
Probabilistic Response Model Fitting with Interactive Tools
This is a collection of tools for studying parametric dependencies of black-box simulation codes or experiments and construction of reduced order response models over input parameter space.
proFit can be fed with a number of data points consisting of different input parameter combinations and the resulting output of the model under investigation. It then fits a response "surface" through the point cloud. This probabilistic response model allows to predict ("interpolate") the output at yet unexplored parameter combinations including uncertainty estimates. It can also tell you where to put more training points to gain maximum new information (experimental design) and automatically generate and start new simulation runs locally or on a cluster. Results can be explored and checked visually in a web frontend.
Telling proFit how to interact with your existing simulations is easy and requires no changes in your existing code. Current functionality covers uncertainty quantification via polynomial chaos expansion with chaospy as a backend. Support for response surface / surrogate models via GPflow is under development. The web frontend is based on plotly/dash.
Features
- Compute evaluation points to run simulation for UQ (full or sparse grid)
- Template replacement and automatic generation of run directories
- Starting parallel runs locally or on the cluster (SLURM)
- Collection of result output and postprocessing with UQ
Installation
Currently, the code is under heavy development, so it should be cloned from GitHub via Git and pulled regularly.
Requirements
sudo apt install python3-dev build-essential
To enable compilation of the fortran modules the following is needed:
sudo apt install gfortran
Dependencies
- numpy, scipy, matplotlib, sympy, pandas
- ChaosPy
- GPy
- scikit-learn
- h5py
- plotly/dash - for the UI
- ZeroMQ - for messaging
- sphinx - for documentation, only needed when
docs
is specified - torch, GPyTorch - only needed when
gpu
is specified
All dependencies are configured in setup.cfg
and should be installed automatically when using pip
.
Automatic tests use pytest
.
Windows 10
To install proFit under Windows 10 we recommend using Windows Subsystem for Linux (WSL2) with the Ubuntu 20.04 LTS distribution (install guide).
After the installation of WSL2 execute the following steps in your Linux terminal (when asked press y
to continue):
-
Make sure you have the right version of Python installed and the basic developer toolset available
sudo apt update sudo apt install python3 python3-pip python3-dev build-essential
-
To install proFit from Git, make sure that the project is located in the Linux file system not the Windows system, and follow the steps in the next section.
To configure the Python interpreter available in your Linux distribution in pycharm (tested with professional edition) follow this guide.
Installation from Git
To install proFit for the current user (--user
) in development-mode (-e
) use:
git clone https://github.com/redmod-team/profit.git
cd profit
pip install -e . --user
Fortran
Certain surrogates require a compiled Fortran backend. To enable compilation of the fortran modules during install:
USE_FORTRAN=1 pip install .
Troubleshooting installation problems
-
Make sure you have all the requirements mentioned above installed.
-
If
pip
is not recognized try the following:
python3 -m pip install -e . --user
- If pip warns you about PATH or proFit is not found close and reopen the terminal
and type
profit --help
to check if the installation was successful.
Documentation using Sphinx
Install requirements for building the documentation using sphinx
pip install .[docs]
HowTo
Examples for different model codes are available under examples/
:
fit
: Simple fit via python interface.mockup
: Simple model called by console command based on template directory.
-
Create and enter a directory (e.g.
study
) containingprofit.yaml
for your run. If your code is based on text configuration files for each run, copy the according directory totemplate
and replace values of parameters to be varied within UQ/surrogate models by placeholders{param}
. -
Running the simulations:
profit run
to start simulations at all the points. Per default the generated input variables are written to
input.txt
and the output data is collected inoutput.txt
.For each run of the simulation, proFit creates a run directory, fills the templates with the generated input data and collects the results. Each step can be customized with the configuration file.
-
To fit the model:
profit fit
Customization can be done with
profit.yaml
again. -
Explore data graphically:
profit ui
starts a Dash-based browser UI
Cluster
proFit supports scheduling the runs on a cluster using slurm. This is done entirely via the configuration files and the usage doesn't change.
profit ui
starts a dash server and it is possible to remotely connect to it (e.g. via ssh port forwarding)
User-supplied files
-
a configuration file: (default:
profit.yaml
)- Add parameters and their distributions via
variables
- Set paths and filenames
- Configure the run backend (how to interact with the simulation)
- Configure the fit / surrogate model
- Add parameters and their distributions via
-
the
template
directory- containing everything a simulation run needs (scripts, links to executables, input files, etc)
- input files use a template format where
{variable_name}
is substituted with the generated values
-
a custom Postprocessor (optional)
- if the default postprocessors don't work with the simulation a custom one can be specified
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file profit-0.4rc0.tar.gz
.
File metadata
- Download URL: profit-0.4rc0.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8477a348e9253eb8f4f8dfc47f1dedf24c416dc134730f5b2cf21d6b5533492 |
|
MD5 | 94600a7002702e428c045528620314df |
|
BLAKE2b-256 | 3087beaae309c811f679af8637f899b77dc876220baf06b437b07b6f22343f2b |
File details
Details for the file profit-0.4rc0-py3-none-any.whl
.
File metadata
- Download URL: profit-0.4rc0-py3-none-any.whl
- Upload date:
- Size: 75.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 811c3fb0062407958ee2692822545409fb56dc150355abae6fa015d05b6c5dc6 |
|
MD5 | 829b9f505c5666788bf157a1ef07667f |
|
BLAKE2b-256 | 96692cb7176ec1339990aeca8c00f188b04b160989ef23268d80f8dcdb26d414 |