-
I'm getting unexpected results with an object of class dgCMatrix passed on to fastNaiveBayes.multinomial
Documentation says it accepts this but it does not, it apparently only handles data.frames cor…
-
[we previously mailed the same letter to: parser-support@lists.stanford.edu ]
Hi!
My colleagues and I have implemented Russian models for tagging and dependency parsing in Stanford CoreNLP and …
-
Hi @jwijffels , I have the same issue as https://github.com/bnosac/udpipe/issues/20, however I dont have the possibility to update `gcc`. Are there other possible solutions? Cant you use the `stringr`…
-
Hi,
I have created a dtm and removed the sparse terms.
```
library(tm)
library(dplyr)
samp = datsub %>%
select(Reviews) %>%
sample_n(2)
dtm = corpus = Corpus(VectorSource(samp$Rev…
-
I am using cleanNLP in the German version and I am wondering if there is any chance to appropriately deal with umlauts, such as ä, ö and ü.
So far, when I am calling the function using _cnlp_annota…
-
When I am using `udpipe-ud-2.3-181115` and model `english-lines-ud-2.3-181115.udpipe` for tokenization, I find all the tokens with upostag `ADP` have xpostag of '_'.
Command line for the tokenizati…
Vimos updated
5 years ago
-
Hi,
created a dtm were I removed sparse terms:
```
library(tm)
corpus = Corpus(VectorSource(datsub$Reviews))
dtm = DocumentTermMatrix(corpus)
dtm = removeSparseTerms(dtm, 0.98)
```
…
-
Hi,
Looked at [here](https://github.com/trinker/sentimentr/issues/21). and executed:
`update_key(
valence_shifters_table,
x = data.frame(x = c("Looks like"), y = c(3)),
comparis…
-
Hi,
I am having issues in installing GitHub developer packages, especially when using install_gihub it gives this error
_Downloading GitHub repo cbail/textnets@master
Error in if (!is_dir(path)) …
-
When document_term_matrix() is called after document_term_frequencies(), the resulting dtm is ordered differently from the original character vector. Although it is possible to correctly order the dtm…