gpt4 book ai didi

r - 在 R 中为 Bing 情感词典添加新词

转载 作者:行者123 更新时间:2023-12-01 03:18:47 25 4
gpt4 key购买 nike

正在使用 R Studio 分析一些评论。我现在正在使用 tidytext 包中的 Bing Sentiment 词典。

我有一些额外的词想要添加到 Bing(运行时或离线)。例如,我可以将它们添加到积极或消极或任何其他情绪的水平。我怎样才能做到这一点?

最佳答案

sentimenttibble ,所以添加新词只是一个 rbind :

additional_sentiment <- tibble(word=c("verygood","verybad"),
sentiment=c("positive","negative"))

new_sentiment <- get_sentiments("bing")%>%
rbind(additional_sentiment)

tail(new_sentiment)
# A tibble: 6 x 2
word sentiment
<chr> <chr>
1 zenith positive
2 zest positive
3 zippy positive
4 zombie negative
5 verygood positive
6 verybad negative

joined <- austen_books() %>%
unnest_tokens(word, text) %>%
left_join(new_sentiment)

head(joined[!is.na(joined$sentiment),])
# A tibble: 6 x 3
book word sentiment
<fctr> <chr> <chr>
1 Sense & Sensibility respectable positive
2 Sense & Sensibility good positive
3 Sense & Sensibility advanced positive
4 Sense & Sensibility death negative
5 Sense & Sensibility great positive
6 Sense & Sensibility loss negative

关于r - 在 R 中为 Bing 情感词典添加新词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47383835/

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