We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6b2c18 commit 1c2bcf2Copy full SHA for 1c2bcf2
dotnet/src/dotnetcore/GxClasses/Domain/GxEmbedding.cs
@@ -26,7 +26,10 @@ internal GxEmbedding(float[] embedding)
26
{
27
_embedding = embedding;
28
}
29
-
+ public bool IsEmpty()
30
+ {
31
+ return _embedding.IsEmpty;
32
+ }
33
internal static GxEmbedding Empty(string model, int dimensions)
34
35
return new GxEmbedding(model, dimensions);
0 commit comments