From f8eb11c21116a3b41e4ad0b25b05ecbdfde41a03 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Thu, 20 Oct 2022 22:44:47 +0100 Subject: [PATCH] added tasks to MC sampling routine --- .../utils/population_extensions/monte_carlo_sampling.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/binarycpython/utils/population_extensions/monte_carlo_sampling.py b/binarycpython/utils/population_extensions/monte_carlo_sampling.py index 9d56f9838..9ce604024 100644 --- a/binarycpython/utils/population_extensions/monte_carlo_sampling.py +++ b/binarycpython/utils/population_extensions/monte_carlo_sampling.py @@ -1,5 +1,10 @@ """ Main script to provide the Monte-Carlo sampling class extensions + +TODO: some of the parameters that we use to sample require previous parameters. We need to set up a method to include making CDFs for those: +TODO: rename the GridVariable to SamplingVariable +TODO: add a property of 'parameter_dependence' which holds a list of other parameters that the current samplingVariable needs to calculate their cdf from +TODO: build CDFS in a nested dict fashing where the parameter the current parameter depends on are stored in some binned way s.t. we can can access the CDFs """ import datetime -- GitLab