NetworkSize() публичный статический Метод

Determine the network size.
public static NetworkSize ( IMLMethod network ) : int
network IMLMethod The network.
Результат int
Пример #1
0
 /// <summary>
 /// Calculate the size that an array should be to hold all of the weights and
 /// bias values.
 /// </summary>
 ///
 /// <returns>The size of the calculated array.</returns>
 public int CalculateSize()
 {
     return(NetworkCODEC.NetworkSize(_network));
 }