SentimentModel

public struct SentimentModel : Codable, Equatable

SentimentModel.

  • When the status is available, the model is ready to use.

    See more

    Declaration

    Swift

    public enum Status : 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?
  • dateTime of last successful model training.

    Declaration

    Swift

    public var lastTrained: Date?
  • dateTime of last successful model deployment.

    Declaration

    Swift

    public var lastDeployed: Date?
  • A 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?
  • Undocumented

    Declaration

    Swift

    public var notices: [Notice]?
  • 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?