RequestPrimeModel {datarobot}R Documentation

Request training for a DataRobot Prime model using a specified ruleset

Description

Training a model using a ruleset is a necessary prerequisite for being able to download the code for a ruleset.

Usage

RequestPrimeModel(project, ruleset)

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.

ruleset

list. A list specifying ruleset parameters (see GetRulesets)

Value

job Id

Examples

## Not run: 
  projectId <- "59a5af20c80891534e3c2bde"
  modelId <- "5996f820af07fc605e81ead4"
  rulesets <- GetRulesets(projectId, modelId)
  ruleset <- rulesets[[1]]
  RequestPrimeModel(projectId, ruleset)

## End(Not run)

[Package datarobot version 2.18.6 Index]