返回列表

12th place post-processing

362. Google QUEST Q&A Labeling | google-quest-challenge

开始: 2019-11-22 结束: 2020-02-10 自然语言处理 数据算法赛
第12名方案后处理
作者:Khoi Nguyen (Grandmaster) | 比赛排名:第12名 | 发布时间:2020-02-11

第12名方案后处理

raters = np.array([18, 18,  6,  6,  6,  6, 18, 18,  6,  6,  6,  6,  6,  6,  6,  6,  6, 6,  6,  3, 18, 18, 18, 18, 18, 90,  6,  6,  6, 18])

mins = np.min(all_preds,axis=0)
maxs = np.max(all_preds,axis=0)
all_preds = (all_preds - mins)/(maxs - mins)

all_preds =  np.round(raters*all_preds).astype(np.float)/raters

如果你有时间,请尝试将此方法应用到你的提交结果中,我非常有兴趣知道这能为你的分数带来多少提升。

同比赛其他方案