Skip to content

Commit

Permalink
Merge pull request #83 from georgian-io/fix_82
Browse files Browse the repository at this point in the history
fix: fix #82
  • Loading branch information
akashsara authored Oct 30, 2024
2 parents c39bd85 + 8452d6d commit a9df729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multimodal_transformers/data/tabular_torch_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(
):
self.df = df
self.encodings = encodings
self.cat_feats = categorical_feats.values
self.cat_feats = categorical_feats.values if categorical_feats is not None else None
self.numerical_feats = numerical_feats
self.labels = labels
self.label_list = (
Expand Down

0 comments on commit a9df729

Please sign in to comment.