ClassificationsModel
public struct ClassificationsModel : Codable, Equatable
Classifications model.
-
When the status is
See moreavailable
, the model is ready to use.Declaration
Swift
public enum Status : String
-
An optional name for the model.
Declaration
Swift
public var name: String?
-
An optional map of metadata key-value pairs to store with this model.
Declaration
Swift
public var userMetadata: [String : JSON]?
-
The 2-letter language code of this model.
Declaration
Swift
public var language: String
-
An optional description of the model.
Declaration
Swift
public var description: String?
-
An optional version string.
Declaration
Swift
public var modelVersion: String?
-
ID of the Watson Knowledge Studio workspace that deployed this model to Natural Language Understanding.
Declaration
Swift
public var workspaceID: String?
-
The description of the version.
Declaration
Swift
public var versionDescription: String?
-
The service features that are supported by the custom model.
Declaration
Swift
public var features: [String]?
-
When the status is
available
, the model is ready to use.Declaration
Swift
public var status: String
-
Unique model ID.
Declaration
Swift
public var modelID: String
-
dateTime indicating when the model was created.
Declaration
Swift
public var created: Date
-
Undocumented
Declaration
Swift
public var notices: [Notice]?
-
dateTime of last successful model training.
Declaration
Swift
public var lastTrained: Date?
-
dateTime of last successful model deployment.
Declaration
Swift
public var lastDeployed: Date?