-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Refine doc and fix bug for testing MedianstopAssessor #1998
Conversation
#lc = [] | ||
to_complete = True | ||
for k in range(10): | ||
for k in range(FLAGS.start_step): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FLAGS.start_step
-> len(lcs[0])
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FLAGS.start_step
is internal used by MedianstopAssessor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@QuanluZhang Fixed
Medianstop 是一种简单的提前终止 Trial 的策略,可参考[论文](https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/46180.pdf)。 如果 Trial X 在步骤 S 的最好目标值低于所有已完成 Trial 前S个步骤目标平均值的中位数,这个 Trial 就会被提前停止。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for your fix, but could you revert this change, because we have a dedicated pipeline for the update of chinese doc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we will update this part later :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@QuanluZhang Done.
This reverts commit 28b8b70.
No description provided.