using System.Collections.Generic;
namespace BotSharp.Algorithm.Bayesian
{
///
/// Interface ITrainingSetAccerssor
///
public interface ITrainingSetAccessor : IEnumerable
{
///
/// Gets the with the specified class.
///
/// The class.
/// IDataSet<TClass, TToken>.
/// No data set was registered for the given class;class
IDataSet this[IClass @class] { get; }
}
}