Skip to content

Commit

Permalink
Update stacked_tabnet.py (#19)
Browse files Browse the repository at this point in the history
Fixing #17
  • Loading branch information
atamazian authored Apr 22, 2021
1 parent 9a76671 commit f35d964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabnet/stacked_tabnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,6 @@ def __init__(self, feature_columns,
self.regressor = tf.keras.layers.Dense(num_regressors, use_bias=False)

def call(self, inputs, training=None):
self.activations = self.tabnet(inputs, training=training)
self.activations = self.stacked_tabnet(inputs, training=training)
out = self.regressor(self.activations)
return out

0 comments on commit f35d964

Please sign in to comment.