facebookresearch / LaMCTS

The release codes of LA-MCTS with its application to Neural Architecture Search.
Other
463 stars 71 forks source link

关于search中函数值计算的一些问题 #6

Closed iceking112 closed 3 years ago

iceking112 commented 4 years ago

我注意到在collect_samples function中对函数值是做了*-1,我的理解是想取到函数的最小值,但是为何在输出 best f(x)时使用np.absolute(curt_best_value)?

linnanwang commented 4 years ago

Free free to remove np.absolute. It simply matches the output of Nevergrad, etc. Otherwise, some may get confused by the negative sign here.