23 lines
463 B
C#
23 lines
463 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|