ArgMax() public méthode

public ArgMax ( ) : int
Résultat int
Exemple #1
0
        public int Classify(Floatarray v)
        {
            OutputVector p = new OutputVector();

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