TrainingDataObject
public struct TrainingDataObject : Codable, Equatable
Details about the training data.
-
The name of the object.
Declaration
Swift
public var object: String? -
Defines the location of the bounding box around the object.
Declaration
Swift
public var location: Location? -
Initialize a
TrainingDataObjectwith member variables.Declaration
Swift
public init( object: String? = nil, location: Location? = nil )Parameters
objectThe name of the object.
locationDefines the location of the bounding box around the object.
Return Value
An initialized
TrainingDataObject.
View on GitHub
TrainingDataObject Structure Reference