Skip to content

Commit

Permalink
MIN A bit more debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed Sep 15, 2024
1 parent 75ce038 commit 604b6f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SemiBin/self_supervised_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ def train_self(logger, out : str, datapaths, data_splits, is_combined=True,
data.index = data.index.astype(str)
data_split = pd.read_csv(data_split_path, index_col=0)

if epoch == 0:
logger.debug(f'Data shape from file `{datapath}`: {data.shape}')
logger.debug(f'Data shape from file `{data_split_path}` (split data file): {data_split.shape}')

if mode == 'several':
if data.shape[1] != 138 or data_split.shape[1] != 136:
sys.stderr.write(
Expand Down

0 comments on commit 604b6f8

Please sign in to comment.