Hi,
Using cleanNLP package. I am trying to initialize the backend for coreNLP using cnlp_init_corenlp().
It works fine in my local machine but when I published in shinyapps.io
I get this error message.
Here's the code:
library(rJava)
library(cleanNLP)
library(coreNLP)
cnlp_init_corenlp(language = "en", anno_level = 2, mem = "6g")
Any suggestions as how to fix this problem? Thanks.