using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Algorithm.Matrix { /// /// Shape of the data arrays /// public class Shape { /// /// Total number of samples /// public int Samples { get; set; } /// /// Total number of features /// public int Features { get; set; } } }