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
I believe there is a typo under docs/source/notes/introduction.rst on line 98.
model_inputs['num_feats'] = numerical_feat
should be
model_inputs['numerical_feats'] = numerical_feat
if we are not explicitly specifying the features in the forward pass. The forward pass defined for the Tabular models takes a numerical_feats parameter, not num_feats. So in the example given, it would compute the forward pass with None for the numeric features.
I believe there is a typo under docs/source/notes/introduction.rst on line 98.
model_inputs['num_feats'] = numerical_feat
should be
model_inputs['numerical_feats'] = numerical_feat
if we are not explicitly specifying the features in the forward pass. The forward pass defined for the Tabular models takes a
numerical_feats
parameter, notnum_feats.
So in the example given, it would compute the forward pass with None for the numeric features.Longer snippet from introduction.rst below:
The text was updated successfully, but these errors were encountered: