18 lines
357 B
C#
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;
|
|
}
|
|
}
|
|
}
|