Fix typo on line 21 comment

Configruation -> Configuration
This commit is contained in:
Chloe Stonecipher 2023-04-04 19:31:46 -07:00 committed by GitHub
parent 78c3235eee
commit f92573c9b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ class DropoutConfig(base_config.BaseConfig):
class LayerNormConfig(base_config.BaseConfig): class LayerNormConfig(base_config.BaseConfig):
"""Configruation for the layer normalization.""" """Configuration for the layer normalization."""
epsilon: float = pydantic.Field( epsilon: float = pydantic.Field(
1e-3, description="Small float added to variance to avoid dividing by zero." 1e-3, description="Small float added to variance to avoid dividing by zero."