BotSharp/BotSharp.NLP/Models/CRFLite/Encoder/FeatureIdPair.cs

20 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BotSharp.Models.CRFLite.Encoder
{
public sealed class FeatureIdPair
{
public long Key;
public int Value;
public FeatureIdPair(long key, int value)
{
Key = key;
Value = value;
}
}
}