Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pcdet/datasets/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def __init__(self, dataset_cfg=None, class_names=None, training=True, root_path=

self.grid_size = self.data_processor.grid_size
self.voxel_size = self.data_processor.voxel_size
self.depth_downsample_factor = self.dataset_cfg.DEPTH_MAP.DOWNSAMPLE_FACTOR

if "DEPTH_MAP" in self.dataset_cfg:
self.depth_downsample_factor = self.dataset_cfg.DEPTH_MAP.DOWNSAMPLE_FACTOR

self.total_epochs = 0
self._merge_all_iters_to_one_epoch = False

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ networkx==2.5
numba==0.52.0
numpy==1.20.1
oauthlib==3.1.0
Pillow==8.1.0
Pillow==8.1.2
protobuf==3.15.3
pyasn1==0.4.8
pyasn1-modules==0.2.8
Expand Down