UpdateTransferableModel: Update the display name or note for an imported model.

View source: R/TransferableModels.R

UpdateTransferableModelR 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:

  • note. Character string Manually added node about this imported model.

  • datasetName. Character string Filename of the dataset used to create the project the model belonged to.

  • modelName. Character string Model type describing the model generated by DataRobot.

  • displayName. Character string Manually specified human-readable name of the imported model.

  • target. Character string The target of the project the model belonged to prior to export.

  • projectName. Character string Name of the project the model belonged to prior to export.

  • importedByUsername. Character string Username of the user who imported the model.

  • importedAt. Character string The time the model was imported.

  • version. Numeric Project version of the project the model belonged to.

  • projectId. Character id of the project the model belonged to prior to export.

  • featurelistName. Character string Name of the featurelist used to train the model.

  • createdByUsername. Character string Username of the user who created the model prior to export.

  • importedById. Character string id of the user who imported the model.

  • id. Character string id of the import.

  • createdById. Character string id of the user who created the model prior to export.

  • modelId. Character string original id of the model prior to export.

  • originUrl. Character string URL.

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)

datarobot documentation built on Nov. 3, 2023, 1:07 a.m.