using System.Collections.Generic;
namespace BotSharp.Algorithm.Bayesian
{
///
/// Interface ITrainingSet
///
public interface ITrainingSet : ITrainingSetAccessor
{
///
/// Adds the specified data set.
///
/// The data set.
/// The additional data sets.
/// dataSet
/// A data set for a given class was already registered.
void Add(IDataSet dataSet, params IDataSet[] additionalDataSets);
///
/// Adds the specified data sets.
///
/// The data sets.
/// dataSets
/// A data set for a given class was already registered.
void Add(IEnumerable dataSets);
}
}