BotSharp/BotSharp.Algorithm/HiddenMarkovModel/Learning/Unsupervised/IUnsupervisedLearning.cs

18 lines
357 B
C#
Raw Normal View History

2018-09-17 12:31:54 +00:00
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;
}
}
}