UpdateTransferableModel {datarobot}R Documentation

Update the display name or note for an imported model.

Description

Update the display name or note for an imported model.

Usage

UpdateTransferableModel(importId, displayName = NULL, note = NULL)

Arguments

importId

character. Id of the import.

displayName

character. The new display name.

note

character. The new note.

Value

A list describing uploaded transferable model with the following components:

See Also

Other Transferable Model functions: DeleteTransferableModel(), DownloadTransferableModel(), GetTransferableModel(), ListTransferableModels(), RequestTransferableModel(), UploadTransferableModel()

Examples

## Not run: 
  id <- UploadTransferableModel("model.drmodel")
  UpdateTransferableModel(id, displayName = "NewName", note = "This is my note.")

## End(Not run)

[Package datarobot version 2.18.6 Index]