1

新使用管道工 API,尝试部署 R 模型,我保存了 R 模型和测试数据(OneRecord)。从 CMD 行运行管道工 API,127.0.0.1:8000 返回错误 "{"error":["500 - Internal server error"]}" 并且终端显示错误 "simpleError in if (opts$show.learner.输出)标识否则捕获。输出:参数长度为零”

我的 R 代码

#plumb_test.R
library(plumber)
#Simple msg command
#* @apiTitle Plumber Example API

#* Echo back the input
#* @param msg The message to echo
#* @get /echo
function(msg=""){
  list(msg = paste0("The message is: '", msg, "'"))
}

#My Model
#* @get /run
function(){
  rf_prediction <- predict(readRDS("rf_unwrap.rds"), newdata = as.data.frame(readRDS("Test_data.Rds")))
  rf_prediction$data
}

管道工运行的 R 代码

library(plumber)
pr <- plumb("plumb_test.R")
pr$run(port=8000)

味精工作正常

http://127.0.0.1:8000/echo?msg=hellohru

returns me

{"msg":["The message is: 'hellohru'"]}

但我的模型返回

{"error":["500 - Internal server error"]}
in the terminal I am getting
> pr$run(port=8000)
Starting server to listen on port 8000
<simpleError in if (opts$show.learner.output) identity else capture.output: argument is of length zero>

我从 windows cmd 行运行如下

C:\R\R-3.5.2\bin>r -f plumb_run.R

所有文件都在 bin 文件夹中(模型、测试数据、plumb R 脚本)

期待预测的输出,不确定错误的含义。

4

1 回答 1

1

与管道工一起加载 mlr 库并在函数中使用 print ,一切正常

library(plumber)
library(mlr)
#My Model
#* @get /run
function(){
  print(predict(readRDS("rf_unwrap.rds"), newdata = as.data.frame(readRDS("Test_data.Rds")))$data)
}
于 2019-05-17T01:57:48.100 回答