Hi everyone!
I’m relatively new to tensorflow. I’m trying to use the tfdf.keras.RandomForestModel (regression). I just reproduced the example for the regression from here
https://tensorflow.google.cn/decision_forests/tutorials/beginner_colab#training_a_regression_model
I was playing with the num_candidate_attributes and I guess I was expecting that during the evaluation of the test dataset the MSE and RMSE dataset would be sensitive to that parameter, but they stay exactly the same no matter what value I give it. I saw some publications that used random forest in R where the choice of mtry (which I’m assuming is the equivalent to num_candidate_attributes?) had an impact on the error metric chosen to evaluate the test dataset. I’m just wondering whether I need to change more attributes to actually change that value or whether I’d just expect it doesn’t change anything (and if so - why?)
Thanks a lot!