Skip to content

Commit

Permalink
adding chunking in the saving statement
Browse files Browse the repository at this point in the history
  • Loading branch information
leewujung committed Aug 20, 2024
1 parent 68ce7ed commit 40bc57a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions echodataflow/stages/subflows/echoshader_flow_predictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ def eshader_preprocess(ed: EchodataflowObject, working_dir, config: Dataset, sta

ds_MVBS_combined_resampled = ds_MVBS_combined_resampled.sel(echo_range=slice(None, 591))

ds_MVBS_combined_resampled = ds_MVBS_combined_resampled.chunk({"ping_time": -1,
"echo_range": -1,
"channel":-1})
# ds_MVBS_combined_resampled = ds_MVBS_combined_resampled.chunk({"ping_time": -1,
# "echo_range": -1,
# "channel":-1})

ds_MVBS_combined_resampled = ds_MVBS_combined_resampled.compute()
# ds_MVBS_combined_resampled = ds_MVBS_combined_resampled.compute()



Expand Down

0 comments on commit 40bc57a

Please sign in to comment.