Skip to content

Commit

Permalink
Merge branch 'local' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Tai-Wang committed Apr 24, 2024
2 parents e144c4b + 1f3743f commit 0ee6e61
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@

# TODO: to determine a reasonable batch size
train_dataloader = dict(
batch_size=12,
num_workers=12,
batch_size=6,
num_workers=6,
persistent_workers=True,
sampler=dict(type='DefaultSampler', shuffle=True),
dataset=dict(type='RepeatDataset',
Expand All @@ -149,8 +149,8 @@
filter_empty_gt=True,
box_type_3d='Euler-Depth')))

val_dataloader = dict(batch_size=12,
num_workers=12,
val_dataloader = dict(batch_size=6,
num_workers=6,
persistent_workers=True,
drop_last=False,
sampler=dict(type='DefaultSampler', shuffle=False),
Expand All @@ -164,8 +164,8 @@
filter_empty_gt=True,
box_type_3d='Euler-Depth'))

test_dataloader = dict(batch_size=12,
num_workers=12,
test_dataloader = dict(batch_size=6,
num_workers=6,
persistent_workers=True,
drop_last=False,
sampler=dict(type='DefaultSampler', shuffle=False),
Expand Down
12 changes: 8 additions & 4 deletions data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ data
├── embodiedscan_occupancy
├── embodiedscan_infos_train.pkl
├── embodiedscan_infos_val.pkl
├── embodiedscan_infos_train_full_vg.json
├── embodiedscan_infos_val_full_vg.json
├── embodiedscan_infos_train_mini_vg.json
├── embodiedscan_infos_val_mini_vg.json
├── embodiedscan_infos_test.pkl
├── embodiedscan_infos_train_vg.json
├── embodiedscan_infos_val_vg.json
├── embodiedscan_infos_test_vg.json
├── embodiedscan_infos_train_mini_vg.json (mini set)
├── embodiedscan_infos_val_mini_vg.json (mini set)
├── embodiedscan_infos_train_vg_all.json (w/ complex prompts)
├── embodiedscan_infos_val_vg_all.json (w/ complex prompts)
```

5. Enter the project root directory, extract images by running
Expand Down

0 comments on commit 0ee6e61

Please sign in to comment.