2018-09-13 04:33:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.NLP.Featuring
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IFeatureExtractor
|
|
|
|
|
|
{
|
2018-09-13 20:01:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Feature dimension size
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
int Dimension { get; set; }
|
2018-09-13 04:33:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|