-
Notifications
You must be signed in to change notification settings - Fork 0
embedder saveToFile
GitHub Action edited this page Jul 9, 2026
·
1 revision
void saveToFile(std::filesystem::path input)Saves embedding table to file.
Returns void
| Parameter | Type | Use | Optional |
|---|---|---|---|
output |
std::filesystem::path |
Output file | ❌ |
// Calling the saveToFile() function
std::filesystem::path output; // Fill with your filepath
embedder e(42, 420);
e.saveToFile(output);- AIUsage
- Block
- Embedder
- Introduction
- Layer
- Model
- NeuralNetwork
- PositionalEncoding
- SelfAttention
- Tokenizer
- Utility