BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/ITextEmbedding.cs

8 lines
140 B
C#
Raw Normal View History

2023-06-17 02:42:35 +00:00
namespace BotSharp.Abstraction.MLTasks;
public interface ITextEmbedding
{
2023-06-18 13:02:59 +00:00
int Dimension { get; }
2023-06-17 02:42:35 +00:00
float[] GetVector(string text);
}