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