Pycaret automatically searches the best parameters. For example, the codes below will allocate 5 automatically tuned models to 'tuned_top5'.
from pycaret.classification import *
setup(data=train, train_size=.9, target='my_target_feature')
tuned_top5 = [tune_model(model) for model in top5]
However, this is not enough for me. I want to know the exact names and values of hyperparameters. For instance, if this code tune max_depth to 9, I want "max_depth=9" or similar outcome to be printed.
Is there any way to do this?