如何使用Quanteda保持句子标记的开头和结尾 [英] How to keep the beginning and end of sentence markers with quanteda

查看:128
本文介绍了如何使用Quanteda保持句子标记的开头和结尾的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用R的quanteda包创建3克文字.

I'm trying to create 3-grams using R's quanteda package.

我正在努力寻找一种方法,以将n-gram句子标记的开头和结尾(<s></s>)保留在下面的代码中.

I'm struggling to find a way to keep in the n-grams beginning and end of sentence markers, the <s> and </s> as in the code below.

我认为将keptFeatures与匹配它们的正则表达式一起使用应该可以维护它们,但是人字形标记始终会被删除.

I thought that using the keptFeatures with a regular expression that matched those should maintain them but the chevron markers are always removed.

如何防止人字形标记被删除,或者用quanteda分隔句子开头和结尾的最佳方法是什么?

How can I keep the chevron markers from being removed or what is the best way to delimit beginning and end of sentence with quanteda?

作为一个奖励问题,docfreq(mydfm)colSums(mydfm)相比有什么优势,str(colSums(mydfm))和str(docfreq(mydfm))的结果几乎相同(Named num [1:n]前者为后者)?

As a bonus question what is the advantage of docfreq(mydfm) over colSums(mydfm), the result of str(colSums(mydfm)) and str(docfreq(mydfm)) is almost identical (Named num [1:n] the former, Named int [1:n] the latter)?

library(quanteda)
text <- "<s>I'm a sentence and I'd better be formatted properly!</s><s>I'm a second sentence</s>"

qc <- corpus(text)

mydfm  <- dfm(qc, ngram=3, removeNumbers = F, stem=T, keptFeatures="\\</?s\\>")

names(colSums(mydfm))

# Output:
# [1] "s_i'm_a"    "i'm_a_sentenc"    "a_sentenc_and"    "sentenc_and_i'd"
# [2] "and_i'd_better"   "i'd_better_be"    "better_be_format"   
# [3] "be_format_proper" "format_proper_s"  "proper_s_s"   "s_s_i'm"    
# [4] "i'm_a_second"   "a_second_sentenc"   "second_sentenc_s"

在代码段中将keepFeatures更改为keepFeatures.

Corrected keepFeatures to keptFeatures in code snippet.

推荐答案

要返回简单的向量,只需取消列出tokenizedText" object returned from tokenize()(which is a specially classed list, with additional attributes). Here I used the what ="fasterword" which splits on "\\s" -- it's a tiny bit smarter than what ="fastestword" "`.

To return a simple vector, just unlist the tokenizedText" object returned fromtokenize()(which is a specially classed list, with additional attributes). Here I used thewhat = "fasterword"which splits on "\\s" -- it's a tiny bit smarter thanwhat = "fastestword"which splits on" "`.

# how to not remove the <s>, and return a vector 
unlist(toks <- tokenize(text, ngrams = 3, what = "fasterword"))
## [1] "<s>I'm_a_sentence"                "a_sentence_and"                  
## [3] "sentence_and_I'd"                 "and_I'd_better"                  
## [5] "I'd_better_be"                    "better_be_formatted"             
## [7] "be_formatted_properly!</s><s>I'm" "formatted_properly!</s><s>I'm_a" 
## [9] "properly!</s><s>I'm_a_second"     "a_second_sentence</s>" 

要使其保留在句子中,请两次将该对象标记化,第一次按句子标记,第二次按fasterword标记.

To keep it within sentence, tokenise the object twice, the first time by sentence, the second time by fasterword.

# keep it within sentence
(sents <- unlist(tokenize(text, what = "sentence")))
## [1] "<s>I'm a sentence and I'd better be formatted properly!"
## [2] "</s><s>I'm a second sentence</s>" 
tokenize(sents, ngrams = 3, what = "fasterword")
## tokenizedText object from 2 documents.
## Component 1 :
## [1] "<s>I'm_a_sentence"      "a_sentence_and"         "sentence_and_I'd"       "and_I'd_better"        
## [5] "I'd_better_be"          "better_be_formatted"    "be_formatted_properly!"
## 
## Component 2 :
## [1] "</s><s>I'm_a_second"   "a_second_sentence</s>"

要在dfm中保留人字形标记,可以通过上面与tokenize()调用相同的选项,因为dfm()调用tokenize(),但是具有不同的默认值-它使用大多数用户可能会想要,而tokenize()要保守得多.

To preserve the chevron markers in a dfm, you can pass through the same options that you used above in the tokenize() call, since dfm() calls tokenize() but with different defaults -- it uses the ones most users will probably want, whereas tokenize() is much more conservative.

# Bonus questions:
myDfm <- dfm(text, verbose = FALSE, what = "fasterword", removePunct = FALSE)
# "chevron" markers are not removed
features(myDfm)
## [1] "<s>i'm"              "a"                   "sentence"            "and"                 "i'd"                
## [6] "better"              "be"                  "formatted"           "properly!</s><s>i'm" "second"             
## [11] "sentence</s>" 

奖金问题的最后一部分是docfreq()colSums()之间的区别.前者返回出现术语的文档计数,后者返回各列的总和以得出整个文档的总术语频率.参见下面的"representatives"术语.

Final part of the bonus question was the difference between docfreq() and colSums(). The former returns the count of documents in which a term occurs, the latter sums the columns to get a total term frequency across documents. See below how different these are for the term "representatives".

# Difference between docfreq() and colSums():
myDfm2 <- dfm(inaugTexts[1:4], verbose = FALSE)
myDfm2[, "representatives"]
docfreq(myDfm2)["representatives"]
colSums(myDfm2)["representatives"]
## Document-feature matrix of: 4 documents, 1 feature.
## 4 x 1 sparse Matrix of class "dfmSparse"
##                  features
## docs              representatives
##   1789-Washington               2
##   1793-Washington               0
##   1797-Adams                    2
##   1801-Jefferson                0
docfreq(myDfm2)["representatives"]
## representatives 
##               2 
colSums(myDfm2)["representatives"]
## representatives 
##               4 

更新:Quanteda v0.9.9中的某些命令和行为已更改:

返回一个简单的向量,保留人字形:

Return a simple vector, retaining chevrons:

as.character(toks <- tokens(text, ngrams = 3, what = "fasterword"))
#  [1] "<s>I'm_a_sentence"                "a_sentence_and"                   "sentence_and_I'd"                
#  [4] "and_I'd_better"                   "I'd_better_be"                    "better_be_formatted"             
#  [7] "be_formatted_properly!</s><s>I'm" "formatted_properly!</s><s>I'm_a"  "properly!</s><s>I'm_a_second"    
# [10] "a_second_sentence</s>" 

保留在句子中

(sents <- as.character(tokens(text, what = "sentence")))
# [1] "<s>I'm a sentence and I'd better be formatted properly!" "</s><s>I'm a second sentence</s>"                       
tokens(sents, ngrams = 3, what = "fasterword")
# tokens from 2 documents.
# Component 1 :
# [1] "<s>I'm_a_sentence"      "a_sentence_and"         "sentence_and_I'd"       "and_I'd_better"         "I'd_better_be"         
# [6] "better_be_formatted"    "be_formatted_properly!"
# 
# Component 2 :
# [1] "</s><s>I'm_a_second"   "a_second_sentence</s>"

奖金问题第1部分:

featnames(dfm(text, verbose = FALSE, what = "fasterword", removePunct = FALSE))
#  [1] "<s>i'm"              "a"                   "sentence"            "and"                 "i'd"                
#  [6] "better"              "be"                  "formatted"           "properly!</s><s>i'm" "second"             
# [11] "sentence</s>"

奖金问题的第2部分未更改.

Bonus question part 2 is unchanged.

这篇关于如何使用Quanteda保持句子标记的开头和结尾的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆