TrainingMethods
Objective-C
NS_ENUM(int, TrainingMethods) {
BACKPROP = 0,
RPROP = 1,
ANNEAL = 2
}
Swift
enum TrainingMethods : Int32
Objective-C
NS_ENUM(int, TrainingMethods) {
BACKPROP = 0,
RPROP = 1,
ANNEAL = 2
}
Swift
enum TrainingMethods : Int32