pico icon indicating copy to clipboard operation
pico copied to clipboard

tree tdepth

Open zuoshaobo opened this issue 9 years ago • 2 comments

1.why the tdepth is 5,can i chang it to other value? every train cycle,we do choose more background images for training,when trainning result "fpr>maxfpr",we train another tree for this cycle,so every cycle may have more trees,So can we add tree's depth for every cycle when the fpr>maxfpr? 2.when the tree result not fill "fpr>maxfpr",why set the threhold value to -1337? thank u~

zuoshaobo avatar Feb 17 '16 06:02 zuoshaobo

  1. You can set the tree depth at the beginning of the training: all trees in the cascade have to be of the same depth (due to simplicity).
  2. Well, the threshold should really be set to -Inf. However, we can get the same effect with -1337 (or any other number smaller than it). https://en.wikipedia.org/wiki/Leet

nenadmarkus avatar Feb 18 '16 09:02 nenadmarkus

Hi! I really think changing the tree depth in different cycles is an interesting idea. Did you try it?

YangUSTC avatar Mar 23 '17 03:03 YangUSTC