Exemplo n.º 1
0
 /// <summary>
 /// The OnConvertOutput callback fires from within the Run method and is used to convert the network output into its native format.
 /// </summary>
 /// <param name="e">Specifies the event arguments.</param>
 public void OnConvertOutput(ConvertOutputArgs e)
 {
     convertOutput(e);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Override called by the OnConvertOutput event fired by the Trainer to convert the network output into its native format.
 /// </summary>
 /// <param name="e">Specifies the event arguments.</param>
 /// <returns>When handled this function retunrs <i>true</i>, otherwise it returns <i>false</i>.</returns>
 protected virtual bool convertOutput(ConvertOutputArgs e)
 {
     return(false);
 }