Skip to content

Commit

Permalink
removed debug print
Browse files Browse the repository at this point in the history
Former-commit-id: 49c575a
  • Loading branch information
fishingguy456 committed May 27, 2022
1 parent 923ee66 commit 62c8398
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion imgtools/ops/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ def __init__(self,
graph = DataGraph(path_crawl=path_crawl, edge_path=edge_path, visualize=visualize)
print(f"Forming the graph based on the given modalities: {self.modalities}")
self.df_combined = graph.parser(self.modalities)
print(self.df_combined.head())
self.output_streams = [("_").join(cols.split("_")[1:]) for cols in self.df_combined.columns if cols.split("_")[0] == "folder"]
self.column_names = [cols for cols in self.df_combined.columns if cols.split("_")[0] == "folder"]
self.series_names = [cols for cols in self.df_combined.columns if cols.split("_")[0] == "series"]
Expand Down

0 comments on commit 62c8398

Please sign in to comment.