File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -323,6 +323,9 @@ def __init__(
323323 columns = ["text" , "tokens" ], errors = "ignore"
324324 )
325325
326+ if "predictions" in self .structured_data .columns :
327+ self .structured_data = self .structured_data .drop (columns = ["predictions" ])
328+
326329 self .target_column = target_column
327330
328331 # Combine topic probabilities with structured data
@@ -520,7 +523,6 @@ def forward(self, x):
520523
521524 def training_step (self , batch , batch_idx ):
522525 x , y = batch
523- print (y )
524526 y_hat = self (x )
525527 loss = self .loss_fn (y_hat , y )
526528
Original file line number Diff line number Diff line change 11"""Version information."""
22
33# The following line *must* be the last in the module, exactly as formatted:
4- __version__ = "0.1.7 "
4+ __version__ = "0.1.8 "
You can’t perform that action at this time.
0 commit comments