From 7680614c7a3e1ae4fe095b9f870513e40926f5cb Mon Sep 17 00:00:00 2001 From: Mr-Neutr0n <64578610+Mr-Neutr0n@users.noreply.github.com> Date: Wed, 11 Feb 2026 23:45:38 +0530 Subject: [PATCH] fix: correct __int__ typo to __init__ in constructor --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index 53adb25..b32b931 100644 --- a/model.py +++ b/model.py @@ -18,7 +18,7 @@ class SinusoidalPositionEncoder(torch.nn.Module): """ """ - def __int__(self, d_model=80, dropout_rate=0.1): + def __init__(self, d_model=80, dropout_rate=0.1): pass def encode(