在描述算法时,初始化步骤中若设置为常数,则应该说明是为什么,否则容易让读者误解无论什么数据集都需要设置该常数。
例如: 和
分别表示两次round的MAE,且初始化为
以及
。可以解释为:
Here 2 is a value can be easily replaced by a smaller one, and 4 is the maximal possible MAE for a rating system with scores in $[1, 5]$.
As can be observed from the next lines, this setting enables the loop to run smoothly.
在描述算法时,初始化步骤中的常数设置至关重要。例如,MAE(MeanAbsoluteError)在两次round间的初始值被设为2和4,这是因为2可以被较小值替代,而4是评分系统在[1,5]范围内的最大可能MAE。这样的设定确保了循环的平稳运行。
201

被折叠的 条评论
为什么被折叠?



