From f92573c9b70bbd6eeda3706edbfcc8a5619b1d6d Mon Sep 17 00:00:00 2001 From: Chloe Stonecipher Date: Tue, 4 Apr 2023 19:31:46 -0700 Subject: [PATCH] Fix typo on line 21 comment Configruation -> Configuration --- projects/home/recap/model/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/home/recap/model/config.py b/projects/home/recap/model/config.py index 47d0640..020f737 100644 --- a/projects/home/recap/model/config.py +++ b/projects/home/recap/model/config.py @@ -18,7 +18,7 @@ class DropoutConfig(base_config.BaseConfig): class LayerNormConfig(base_config.BaseConfig): - """Configruation for the layer normalization.""" + """Configuration for the layer normalization.""" epsilon: float = pydantic.Field( 1e-3, description="Small float added to variance to avoid dividing by zero."