BotSharp/BotSharp.MachineLearning/CRFLite/Encoder/FeatureIdPair.cs
2018-08-18 16:13:49 -05:00

20 lines
367 B
C#

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