config={{config}}
echo "config: $config"
if [ $config == "nn" ]; then
echo "No params"
### DO STUFF
elif [ $config == "sp" ]; then
sp_smoothing={{sp_smoothing}}
### DO STUFF
else
echo "config not recognized"
exit 1
fi
I am experiencing the following error:
TypeError: __init__() got an unexpected keyword argument 'static_analysis'
Without static_analysis, I have error because some parameters are not defined. Am I doing something wrong?
I have the following pipeline to create hparam space:
with related shell file:
I am experiencing the following error:
Without
static_analysis
, I have error because some parameters are not defined. Am I doing something wrong?