Skip to content
Snippets Groups Projects
Commit c9af163c authored by pswain's avatar pswain
Browse files

feat(dataloader): prints shape of data frame created

parent bb3f6c6c
No related branches found
No related tags found
No related merge requests found
......@@ -255,6 +255,7 @@ class dataloader:
self.df = pd.merge(self.df, r_df, how="left")
else:
self.df = r_df
print(f" data size is {self.df.shape}")
# define ids
self.ids = list(self.df.id.unique())
if not use_tsv:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment