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
logger.warning(f"Batch No.{i} of total {len(vali_loader)} has actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
164
+
logger.warning(f"Exp_Main.vali(): Batch No.{i}out of [0~{len(vali_loader)-1}] has an actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
165
165
if"y_mask"inbatch.keys():
166
166
iftorch.sum(batch["y_mask"]).item() ==0:
167
167
ifcurrent_epoch==0:
168
-
logger.warning(f"Batch No.{i} of total {len(vali_loader)} has no evaluation point (inferred from y_mask), thus skipping")
168
+
logger.warning(f"Exp_Main.vali(): Batch No.{i}out of [0~{len(vali_loader)-1}] has no evaluation point (inferred from y_mask), thus skipping")
logger.warning(f"Batch No.{i} of total {len(train_loader)} has actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
240
+
logger.warning(f"Exp_Main.train(): Batch No.{i}out of [0~{len(train_loader)-1}] has an actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
241
241
if"y_mask"inbatch.keys():
242
242
iftorch.sum(batch["y_mask"]).item() ==0:
243
243
ifepoch==0:
244
-
logger.warning(f"Batch No.{i} of total {len(train_loader)} has no evaluation point (inferred from y_mask), thus skipping")
244
+
logger.warning(f"Exp_Main.train(): Batch No.{i}out of [0~{len(train_loader)-1}] has no evaluation point (inferred from y_mask), thus skipping")
logger.warning(f"Batch No.{i} of total {len(test_loader)} has actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
537
+
logger.warning(f"Exp_Main.test(): Batch No.{i}out of [0~{len(test_loader)-1}] has an actual batch_size={batch[next(iter(batch))].shape[0]}, which is not the same as --batch_size={self.configs.batch_size}")
0 commit comments