BotSharp/BotSharp.MachineLearning/CRFLite/Encoder/FeatureIdPair.cs

20 lines
367 B
C#
Raw Normal View History

2018-08-18 21:13:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BotSharp.MachineLearning.CRFLite.Encoder
{
public sealed class FeatureIdPair
{
public long Key;
public int Value;
public FeatureIdPair(long key, int value)
{
Key = key;
Value = value;
}
}
}