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; } } }