Learn R Programming

datarobot (version 2.8.0)

RequestApproximation: Request an approximation of a model using DataRobot Prime

Description

This function wll create several rulesets that approximate the specified model. The code used in the approximation can be downloaded to be run locally. Currenly only Python and Java downloadable code is available

Usage

RequestApproximation(project, modelId)

Arguments

project

character. Either (1) a character string giving the unique alphanumeric identifier for the project, or (2) a list containing the element projectId with this identifier.

modelId

character. Unique alphanumeric identifier for the model of interest.

Value

job Id

Details

General workflow of creating and downloading Prime code may look like following: RequestApproximation - create several rulestes that approximate the specified model GetRulesets - list all rulesests created for the parent model RequestPrimeModel - create Prime model for specified ruleset (use one of rulesets return by GetRulests) GetPrimeModelFromJobId - get PrimeModelId using JobId returned by RequestPrimeModel CreatePrimeCode - create code for one of available Prime models GetPrimeFileFromJobId - get PrimeFilelId using JobId returned by CreatePrimeCode DownloadPrimeCode - download specified Prime code file

Examples

Run this code
# NOT RUN {
  projectId <- "59a5af20c80891534e3c2bde"
  modelId <- "5996f820af07fc605e81ead4"
  RequestApproximation(projectId, modelId)
# }

Run the code above in your browser using DataLab