Exemple #1
0
 /// <summary>
 /// Prints the dataframe, by default first 5 records are printed. Helpful to understand the data structure.
 /// </summary>
 /// <param name="count">The count of records to print.</param>
 /// <param name="title">The title to display.</param>
 public void Head(uint count = 5, string title = "")
 {
     K.Print(UnderlayingTensor.SliceRows(0, count), title);
 }
Exemple #2
0
 public void Print(string title = "")
 {
     K.Print(this, title);
 }