TabularPredictor.print_interpretable_rules#

TabularPredictor.print_interpretable_rules(complexity_threshold: int = 10, model_name: Optional[str] = None)[source]#

Print the rules of the highest performing model below the complexity threshold.

Parameters
  • complexity_threshold (int, default=10) – Threshold for complexity (number of rules) of fitted models to show. If not model complexity is below this threshold, prints the model with the lowest complexity.

  • model_name (str, default=None) – Optionally print rules for a particular model, ignoring the complexity threshold.