BotSharp/BotSharp.MachineLearning.UnitTest/EncoderTest.cs

23 lines
570 B
C#
Raw Normal View History

2018-08-18 21:13:49 +00:00
using BotSharp.MachineLearning.CRFLite;
using BotSharp.MachineLearning.CRFLite.Encoder;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BotSharp.MachineLearning.UnitTest
{
[TestClass]
public class EncoderTest
{
[TestMethod]
public void TestEncode()
{
var encoder = new CRFEncoder();
bool bRet = encoder.Learn(new EncoderOptions
{
TrainingCorpusFileName = "",
TemplateFileName = "",
ModelFileName = ""
});
}
}
}