Skip to content

Commit

Permalink
fix: n_a not being used
Browse files Browse the repository at this point in the history
  • Loading branch information
Optimox authored and eduardocarvp committed Jan 2, 2021
1 parent 61c294a commit 7ae20c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytorch_tabnet/tab_network.py
Expand Up @@ -331,7 +331,7 @@ def __init__(
input_dim=self.post_embed_dim,
output_dim=self.post_embed_dim,
n_d=n_d,
n_a=n_d,
n_a=n_a,
n_steps=n_steps,
gamma=gamma,
n_independent=n_independent,
Expand Down Expand Up @@ -442,7 +442,7 @@ def __init__(
input_dim=input_dim,
output_dim=output_dim,
n_d=n_d,
n_a=n_d,
n_a=n_a,
n_steps=n_steps,
gamma=gamma,
n_independent=n_independent,
Expand Down

0 comments on commit 7ae20c9

Please sign in to comment.