get_action_params#

tpcp.get_action_params(instance: Algorithm) dict[str, Any][source]#

Get all “Action Params” / “Other Parameters” of the Algorithm.

Action params are all parameters passed as input to the action method.

Note: We do not magically set these values on the algorithm instance. Instead, the developer of the algorithms must implement the algorithm to follow this convention.

In general, this function is not that useful but might be used for debugging purposes.

Returns:
paramsdict

Parameter names mapped to their values.