Skip to content

embedder saveToFile

GitHub Action edited this page Jul 9, 2026 · 1 revision
void saveToFile(std::filesystem::path input)

Basic Info

Saves embedding table to file.

Return Type

Returns void

Parameters

Parameter Type Use Optional
output std::filesystem::path Output file

Example

// Calling the saveToFile() function
std::filesystem::path output; // Fill with your filepath
embedder e(42, 420);
e.saveToFile(output);

Clone this wiki locally