Jug - 无法创建服务器

时间:2016-08-22 11:27:54

标签: r api

我已运行以下脚本从RF模型构建API。 我收到以下消息:“在http://127.0.0.1:8080服务水壶 startServer(主机,端口,应用程序)出错:无法创建服务器“。在另一篇文章中,用户与Shiny软件包有同样的问题,建议安装更新的软件包版本。我从Github下载了最新的Jug版本(devtools :: install_github(“Bart6114 / jug”)),但这并没有解决我的问题。有谁知道如何解决它? 感谢

library(randomForest)
library(jug)
mpg_fit<-randomForest(mpg~disp+wt+hp, mtcars)
saveRDS(mpg_fit, "mpg_fit.Rdata")
pg_fit<-readRDS("mpg_fit.Rdata")
predict_mpg<-function(disp, wt, hp){
  new_data<-data.frame(disp=as.numeric(disp), 
                   wt=as.numeric(wt),
                   hp=as.numeric(hp))
 predict(mpg_fit, newdata = new_data)
}
jug() %>%
post("/mpg_api", decorate(predict_mpg)) %>%
simple_error_handler() %>%
serve_it()

0 个答案:

没有答案