gzfile中的警告(文件," rb")

时间:2017-12-29 08:29:40

标签: r shiny shinyapps

我的应用程序在本地计算机上运行得很好但是当上传到shinyapps.io时,它会抛出以下错误。

Warning in gzfile(file, "rb") :  cannot open compressed file 'model2.RDS', probable reason 'No such file or directory'.

model2.RDS文件存在于ui.Rshiny.R存在的同一目录中。

源代码:

library(shiny)
library(ANLP)

modelelem <- readRDS("model2.RDS")

shinyServer(function(input, output) {
  observe({
    text1 <- reactive({input$text})
    Predicted1 <- NULL
    Predicted1 <- predict_Backoff(text1(), modelelem, isDebugMode = F)
    output$Predicted <- renderText({Predicted1})
  })
})

0 个答案:

没有答案