|
Mila 0.13.48
Deep Neural Network Library
|
Configuration for the TokenEmbedding component. More...


Public Member Functions | |
| void | fromMetadata (const SerializationMetadata &meta) |
| Populate configuration from provided metadata. | |
| size_t | getEmbeddingDim () const |
| size_t | getVocabSize () const |
| SerializationMetadata | toMetadata () const |
| Convert configuration into a SerializationMetadata object. | |
| std::string | toString () const override |
| Produce a short, human-readable summary of the configuration. | |
| void | validate () const override |
| Validate configuration parameters. | |
| template<typename Self> | |
| decltype(auto) | withEmbeddingDim (this Self &&self, size_t embedding_dim) |
| template<typename Self> | |
| decltype(auto) | withVocabSize (this Self &&self, size_t vocab_size) |
| Public Member Functions inherited from Mila::Dnn::ComponentConfig | |
| virtual | ~ComponentConfig ()=default |
| Virtual destructor for polymorphic base. | |
Private Attributes | |
| size_t | embedding_dim_ { 0 } |
| size_t | vocab_size_ { 0 } |
Configuration for the TokenEmbedding component.
Provides a type-safe fluent interface for configuring a pure token embedding lookup. Positional fields are intentionally absent — they belong to the model or attention configuration.
|
inlinevirtual |
Populate configuration from provided metadata.
Implementations should read available keys and leave missing keys at their current/default values to preserve forward/backward compatibility.
| meta | Metadata to read configuration values from. |
Implements Mila::Dnn::ComponentConfig.

|
inline |
|
inline |
|
inlinevirtual |
Convert configuration into a SerializationMetadata object.
Implementations should include any fields required to fully reconstruct the configuration via fromMetadata.
Implements Mila::Dnn::ComponentConfig.

|
inlineoverridevirtual |
Produce a short, human-readable summary of the configuration.
Implementations should return a compact, single-line description suitable for logging and debugging.
Implements Mila::Dnn::ComponentConfig.
|
inlineoverridevirtual |
Validate configuration parameters.
Called by callers to ensure the configuration represents a valid, constructible component. Implementations must throw std::invalid_argument (or a derived exception) when validation fails.
| std::invalid_argument | If the configuration is invalid. |
Implements Mila::Dnn::ComponentConfig.
|
inline |
|
inline |

|
private |
|
private |