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 86984be commit cff9fc2Copy full SHA for cff9fc2
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