samples/deployment/deploy-to-aci/score.R

# Copyright(c) Microsoft Corporation.
# Licensed under the MIT license.

library(jsonlite)

init <- function()
{
  model_path <- Sys.getenv("AZUREML_MODEL_DIR")
  model <- readRDS(file.path(model_path, "model.rds"))
  message("model is loaded")
  
  function(data)
  {
    plant <- as.data.frame(fromJSON(data))
    prediction <- predict(model, plant)
    result <- as.character(prediction)
    toJSON(result)
  }
}
aawoocay/vignettefiles documentation built on Dec. 31, 2020, 6:38 p.m.