File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 1+ **2.2.1 - 12/31/25 **
2+
3+ - Create new EnsembleDistribution method to get expected parameters
4+
15**2.2.1 - 11/20/25 **
26
37 - Improve 'make build-env': better handle args and make the env name optional
Original file line number Diff line number Diff line change @@ -595,6 +595,15 @@ def get_parameters(
595595
596596 return weights , params
597597
598+ @classmethod
599+ def get_expected_parameters (cls , distribution_name : str ) -> list [str ]:
600+ """Get the expected parameters for a given distribution in the ensemble."""
601+ return [
602+ * cls ._distribution_map [distribution_name ].expected_parameters ,
603+ "x_min" ,
604+ "x_max" ,
605+ ]
606+
598607 @staticmethod
599608 def fill_missing_weights (weights : Parameters , expected_columns ) -> Parameters :
600609 weights = copy .deepcopy (weights )
You can’t perform that action at this time.
0 commit comments