我试图了解 VADER 对句子分析的作用。为什么这里的超参数 Alpha 设置为 15?我知道它在不受约束时不稳定,但为什么是 15?
def normalize(score, alpha=15):
"""
Normalize the score to be between -1 and 1 using an alpha that
approximates the max expected value
"""
norm_score = score/math.sqrt((score*score) + alpha)
return norm_score