BotSharp/BotSharp.Algorithm/HiddenMarkovModel/Learning/Unsupervised/IUnsupervisedLearning.cs
2018-09-17 07:31:54 -05:00

18 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BotSharp.Algorithm.HiddenMarkovModel.Learning.Unsupervised
{
public partial interface IUnsupervisedLearning
{
double Run(int[][] observations_db);
HiddenMarkovModel Model
{
get;
set;
}
}
}