gpt4 book ai didi

python - 在 nltk for python 中编辑 Vader_lexicon.txt 以添加与我的域相关的词

转载 作者:行者123 更新时间:2023-12-03 23:54:20 26 4
gpt4 key购买 nike

我在 vader 中使用 nltk 来查找文件中每一行的情绪。我有两个问题:

  • 我需要在 vader_lexicon.txt 中添加单词,但其语法如下所示:

  • assaults -2.5 0.92195 [-1, -3, -3, -3, -4, -3, -1, -2, -2, -3]


    -2.50.92195 [-1, -3, -3, -3, -4, -3, -1, -2, -2, -3] 代表什么?

    我应该如何为一个新单词编码?假设我必须添加类似 '100%''A1' 的东西。
  • 我还可以在 nltk_data\corpora\opinion_lexicon 文件夹中看到正面和负面的词 txt。这些如何得到利用?我也可以在这些 txt 文件中添加我的话吗?
  • 最佳答案

    我相信 vader 在对文本进行分类时只使用单词和第一个值。如果你想添加新词,你可以简单地创建一个词及其情感值的字典,可以使用更新函数添加:

    from nltk.sentiment.vader import SentimentIntensityAnalyzer

    Analyzer = SentimentIntensityAnalyser()
    Analyzer.lexicon.update(your_dictionary)

    您可以根据他们感知的情绪强度手动分配带有情绪值的单词,或者如果这不切实际,那么您可以在两个类别中分配一个广泛的值(例如 -1.5 和 1.5)。

    您可以使用此脚本(不是我的)来检查您的更新是否已包含在内:
    import nltk
    from nltk.tokenize import word_tokenize, RegexpTokenizer
    from nltk.sentiment.vader import SentimentIntensityAnalyzer
    import pandas as pd

    Analyzer = SentimentIntensityAnalyzer()

    sentence = 'enter your text to test'

    tokenized_sentence = nltk.word_tokenize(sentence)
    pos_word_list=[]
    neu_word_list=[]
    neg_word_list=[]

    for word in tokenized_sentence:
    if (Analyzer.polarity_scores(word)['compound']) >= 0.1:
    pos_word_list.append(word)
    elif (Analyzer.polarity_scores(word)['compound']) <= -0.1:
    neg_word_list.append(word)
    else:
    neu_word_list.append(word)

    print('Positive:',pos_word_list)
    print('Neutral:',neu_word_list)
    print('Negative:',neg_word_list)
    score = Analyzer.polarity_scores(sentence)
    print('\nScores:', score)

    在更新维达之前:
    sentence = 'stocks were volatile on Tuesday due to the recent calamities in the Chinese market'

    Positive: []
    Neutral: ['stocks', 'were', 'volatile', 'on', 'Tuesday', 'due', 'to', 'the', 'recent', 'calamities', 'in', 'the', 'Chinese', 'markets']
    Negative: []
    Scores: {'neg': 0.0, 'neu': 1.0, 'pos': 0.0, 'compound': 0.0}

    使用基于金融的词典更新 vader 后:
    Analyzer.lexicon.update(Financial_Lexicon)
    sentence = 'stocks were volatile on Tuesday due to the recent calamities in the Chinese market'

    Positive: []
    Neutral: ['stocks', 'were', 'on', 'Tuesday', 'due', 'to', 'the', 'recent', 'in', 'the', 'Chinese', 'markets']
    Negative: ['volatile', 'calamities']
    Scores: {'neg': 0.294, 'neu': 0.706, 'pos': 0.0, 'compound': -0.6124}

    关于python - 在 nltk for python 中编辑 Vader_lexicon.txt 以添加与我的域相关的词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51514208/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com