...
A tuple
can not be entered on BL. So we registered the parameter as a STRING
. In the config.json
, such parameter is run written as follows:
Code Block |
---|
{
"param_baseline": 0, None
} |
To convert it into a tuple, in the Python file we added:
Code Block |
---|
if config['param_baseline'] is not None:
config['param_baseline'] = tuple(config['param_baseline']) |
Case of a list of integers/floats
...