Skip to content

Commit

Permalink
Added verbosity fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kylevedder committed Aug 22, 2024
1 parent 8c844f9 commit 4d840dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _load_idx(self, idx: int):
if self.flow_files is not None:
flow_path = self.flow_files[idx]

flow_df = load_feather(flow_path)
flow_df = load_feather(flow_path, verbose=False)
flow = flow_df[["flow_tx_m", "flow_ty_m", "flow_tz_m"]].values
marked_is_valid = flow_df["is_valid"].values
flow = flow.astype(np.float32)
Expand Down

0 comments on commit 4d840dd

Please sign in to comment.