RevolutionAnalytics / AzureML

An R interface to AzureML(https://studio.azureml.net/) experiments, datasets, and web services.
Other
46 stars 22 forks source link

LibraryExecutionError if function returns empty data.frame() #132

Open tschager opened 6 years ago

tschager commented 6 years ago

A webservice returning an empty array fails with "Module execution encountered an internal library error."

df <- data.frame(x=1,y=2)
func <- function(df) {
  return(data.frame())
}
service <- publishWebService(ws.priv,func,"testService",inputSchema = df)
consume(service,df)