Skip to content

Commit

Permalink
fix: need dict for model path
Browse files Browse the repository at this point in the history
  • Loading branch information
bnb32 committed Jan 10, 2025
1 parent 64d0ee8 commit 4f2ed08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nsrdb/config/create_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
}

DEFAULT_MLCLOUDS = {
'model_path': LEG_MODEL_FPATH,
'model_path': {'cloud_prop_model_path': LEG_MODEL_FPATH},
'col_chunk': 10000,
'fill_all': False,
'max_workers': 4,
Expand All @@ -63,7 +63,7 @@
'main_dir': '../',
}

COLLECT_BLEND_KWARGS = {**BASE_KWARGS, 'extent': 'full'}
COLLECT_BLEND_KWARGS = {**BASE_KWARGS, 'extent': 'full', 'max_workers': 1}

AGG_KWARGS = {
**BASE_KWARGS,
Expand Down

0 comments on commit 4f2ed08

Please sign in to comment.