4

When plotting a tree from catboost, it shows val in leaves; what do these values represent?

I can't find the answer in their official tutorial on plotting, nor are there any such questions answered anywhere that I could find. Like:

  1. LightGBM plot_tree() Leaf numbers
  2. What' the meaning of "Val" in the visualization of a lightgbm tree?
  3. https://github.com/catboost/catboost/issues?q=plot_tree

Binary Classification MultiClass Classification

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Nauman Naeem
  • 408
  • 3
  • 12
  • Just came across this question. Are [this question and answer](https://stackoverflow.com/questions/69470096/what-is-the-scale-of-the-leaf-values-in-a-catboostregressor-tree/71697767#71697767) helpful? – A. S. K. Apr 18 '22 at 20:35

1 Answers1

1

These are values predicted by the tree. There are more than one value for multi-classification and multi-regression.

Please note that as we do not monitor Stack Overflow very closely, it is better to ask questions at our Github repo.

desertnaut
  • 57,590
  • 26
  • 140
  • 166
  • 1
    Thanks, but what do these values mean for classification? I have also raised an [issue](https://github.com/catboost/catboost/issues/1389) on github. Which I didn't really understand. – Nauman Naeem Aug 28 '20 at 08:19