MPPCategory
@interface MPPCategory : NSObjectCategory is a util class that contains a label, its display name, a float value as score, and the index of the label in the corresponding label file. Typically it’s used as the result of classification tasks.
- 
                  
                  The index of the label in the corresponding label file. Set to -1 if the index is not set. DeclarationObjective-C @property (nonatomic, readonly) NSInteger index;
- 
                  
                  Confidence score for this class. DeclarationObjective-C @property (nonatomic, readonly) float score;
- 
                  
                  The label of this category object. DeclarationObjective-C @property (nonatomic, readonly, nullable) NSString *categoryName;
- 
                  
                  The display name of the label, which may be translated for different locales. For example, a label, “apple”, may be translated into Spanish for display purpose, so that the display name is “manzana”. DeclarationObjective-C @property (nonatomic, readonly, nullable) NSString *displayName;
- 
                  
                  Initializes a new ResultCategorywith the given index, score, category name and display name.DeclarationObjective-C - (nonnull instancetype)initWithIndex:(NSInteger)index score:(float)score categoryName:(nullable NSString *)categoryName displayName:(nullable NSString *)displayName;ParametersindexThe index of the label in the corresponding label file. scoreThe probability score of this label category. categoryNameThe label of this category object. displayNameThe display name of the label. Return ValueAn instance of ResultCategoryinitialized with the given index, score, category name and display name.
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C + (instancetype)new NS_UNAVAILABLE;