示例#1
0
 /// <summary>
 /// The OnGetData callback fires from within the Train method and is used to get a new observation data.
 /// </summary>
 public void OnGetData(GetDataArgs e)
 {
     getData(e);
 }
示例#2
0
 /// <summary>
 /// Override called by the OnGetData event fired by the Trainer to retrieve a new set of observation collections making up a set of experiences.
 /// </summary>
 /// <param name="e">Specifies the getData argments used to return the new observations.</param>
 /// <returns>A value of <i>true</i> is returned when data is retrieved.</returns>
 protected virtual bool getData(GetDataArgs e)
 {
     return(false);
 }