Skip to content

Embeddings vocabtxtloader loadasync

github-actions[bot] edited this page Aug 26, 2026 · 24 revisions

Development build. This page describes main, not a released package. The latest published Lodestar.Embeddings is 0.4.0 — read its documentation.

VocabTxtLoader.LoadAsync

Reads a vocab.txt into a WordPiece vocabulary, asynchronously.

public static Task<WordPieceVocabulary> LoadAsync(Stream source, ArtifactLoadOptions options = null, string unkToken = "[UNK]", string continuationPrefix = "##", bool lowercase = false, CancellationToken cancellationToken = default)

Parameterssource 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. unkToken is the piece an unknown word maps to, continuationPrefix marks a word-internal piece, and lowercase says whether the model was trained on lowercased text. cancellationToken cancels the read.

ReturnsTask<WordPieceVocabulary>, completing with the loaded vocabulary.

ExceptionsArgumentNullException 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<WordPieceVocabulary> LoadAsync() =>
    await VocabTxtLoader.LoadAsync(File.OpenRead("vocab.txt"), lowercase: true);

WordPieceVocabulary vocab = LoadAsync().GetAwaiter().GetResult();

Remarks — Same format, same parameters and same refusals as Load; only the I/O is asynchronous, and there is no string overload because opening the file is the synchronous part.

lowercase matters exactly as much here — see Load for why getting it wrong is silent.

Applies to — net10.0, netstandard2.0.

See alsoVocabTxtLoader.Load, VocabTxtLoader, the persistence index.

Lodestar

Project

Clone this wiki locally