Embeddings 0.7.0 sentencepiecemodelloader loadasync - CyrilB1531/lodestar GitHub Wiki
Lodestar.Embeddings 0.7.0. This page is frozen at that release. Read the current documentation for what
mainsays now. A link to a decision or a migration page followsmain, and leaves the archive.
SentencePieceModelLoader.LoadAsync
Reads a spiece.model, asynchronously.
public static Task<SentencePieceVocabulary> LoadAsync(Stream source, ArtifactLoadOptions options = null, CancellationToken cancellationToken = default)
Parameters — source is a readable stream, never disposed here; path is the file to read. options bounds what will be accepted and defaults to
ArtifactLoadOptions's own defaults. cancellationToken cancels the read.
Returns — Task<SentencePieceVocabulary>, completing with the loaded vocabulary.
Exceptions — ArgumentNullException for a null source or path. InvalidDataException
when the content is not the format expected, declares a model this loader does not read, or
exceeds a bound in options — the message names both the limit and the value. OperationCanceledException when cancellationToken is signalled.
Example — the same load, awaited.
using Lodestar.Embeddings.Persistence;
using Lodestar.Embeddings.Tokenization;
static async Task<SentencePieceVocabulary> LoadAsync() =>
await SentencePieceModelLoader.LoadAsync(File.OpenRead("spiece.model"));
SentencePieceVocabulary vocab = LoadAsync().GetAwaiter().GetResult();
Remarks — Same protobuf, same reads and same refusals as Load; only
the I/O is asynchronous. There is no string overload, because opening the file is the
synchronous part and a caller who wants one can open it and hand over the stream.
Applies to — net10.0, netstandard2.0.
See also — SentencePieceModelLoader.Load,
SentencePieceModelLoader,
the persistence index.