I am using a Generalized Additive Model to predict a score between 0-100.
One of the features in the model is a boolean value which is rarely true. When the value is true, it is a very strong signal that the score should be low. When it is false, the score is not affected by it.
Is there any standard way to incorporate this into the model (specifically the fact that this feature is very important when true but useless when false)? Or is it recommended to just add it as a rule external to the model?