BotSharp/BotSharp.Algorithm/Matrix/Shape.cs

23 lines
463 B
C#
Raw Normal View History

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