You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""
- Adjustment of the values of Nd and Na is the most efficient way of obtaining a trade-off
between performance and complexity. Nd = Na is a reasonable choice for most datasets.
"""
However tabnet line 128 is:
"""
if feature_dim <= output_dim:
raise ValueError("To compute features_for_coef, feature_dim must be larger than output dim")
"""
Wondering if this input validation is in error, or if documentation should be adjusted. Happy to PR the fix, I just don't know which way it should go.
The text was updated successfully, but these errors were encountered:
In the TabNet docstring it says
"""
- Adjustment of the values of Nd and Na is the most efficient way of obtaining a trade-off
between performance and complexity. Nd = Na is a reasonable choice for most datasets.
"""
However tabnet line 128 is:
"""
if feature_dim <= output_dim:
raise ValueError("To compute
features_for_coef
, feature_dim must be larger than output dim")"""
Wondering if this input validation is in error, or if documentation should be adjusted. Happy to PR the fix, I just don't know which way it should go.
The text was updated successfully, but these errors were encountered: