Closed wuyi1983 closed 7 years ago
if ((numPriors != (confPreds.getDepth() / numClasses)) or (numPriors != (locPreds.getDepth() / 4))) { vlmxError(VLMXE_IllegalArgument, "LOCPREDS and CONFPREDS do not match the given set of priors.") ; }
'or' should be replaced by '|'.
Good spot!
if ((numPriors != (confPreds.getDepth() / numClasses)) or (numPriors != (locPreds.getDepth() / 4))) { vlmxError(VLMXE_IllegalArgument, "LOCPREDS and CONFPREDS do not match the given set of priors.") ; }
'or' should be replaced by '|'.