TrainingStatus
public struct TrainingStatus : Codable, Equatable
Training status details.
-
The total number of training examples uploaded to this collection.
Declaration
Swift
public var totalExamples: Int?
-
When
true
, the collection has been successfully trained.Declaration
Swift
public var available: Bool?
-
When
true
, the collection is currently processing training.Declaration
Swift
public var processing: Bool?
-
When
true
, the collection has a sufficent amount of queries added for training to occur.Declaration
Swift
public var minimumQueriesAdded: Bool?
-
When
true
, the collection has a sufficent amount of examples added for training to occur.Declaration
Swift
public var minimumExamplesAdded: Bool?
-
When
true
, the collection has a sufficent amount of diversity in labeled results for training to occur.Declaration
Swift
public var sufficientLabelDiversity: Bool?
-
The number of notices associated with this data set.
Declaration
Swift
public var notices: Int?
-
The timestamp of when the collection was successfully trained.
Declaration
Swift
public var successfullyTrained: Date?
-
The timestamp of when the data was uploaded.
Declaration
Swift
public var dataUpdated: Date?