ArgMax() public method

public ArgMax ( ) : int
return int
Esempio n. 1
0
        public int Classify(Floatarray v)
        {
            OutputVector p = new OutputVector();

            XOutputs(p, v);
            return(p.ArgMax());
        }
Esempio n. 2
0
 public int Classify(Floatarray v)
 {
     OutputVector p = new OutputVector();
     XOutputs(p, v);
     return p.ArgMax();
 }