REVIEW 2 major objections 5 minor 43 references
OnlineBEV: Recurrent Temporal Fusion in Bird's Eye View Representations for Multi-Camera 3D Perception
T0 review · 2 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read OnlineBEV argues that a single recurrent BEV feature, aligned by motion-guided deformable attention, can beat parallel multi-frame fusion and reaches 63.9% NDS on the nuScenes test set.
desk verdict The architecture is interesting, but the paper's own ablation contradicts its headline SOTA numbers, so the central empirical claim is unsupported. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The machine that carries the argument is the Motion-Guided BEV Fusion Network (MBFNet), composed of two parts. The Motion Feature Extractor (MFE) computes a motion context feature as channel-wise attention applied to the difference between historical and current BEV features (Eq. 1); static content cancels out while moving objects leave a signal. The Motion-Guided BEV Warping Attention (MGWA) then runs deformable attention in which the motion feature supplies the sampling offsets and attention weights, effectively moving the historical feature to where the current feature indicates objects now are. Around this sits the Heatmap-based Temporal Consistency Loss, which compares object-center heatmaps of the aligned history and the current frame with gradients blocked on the current side, so that training explicitly pulls the aligned history toward the present.
What would settle it
A decisive check would be to replace the learned motion features with ground-truth per-object velocity or optical-flow-derived offsets during alignment and compare on the nuScenes validation set; if the supervised motion signal does not beat the learned difference signal by a large margin, then the channel-difference guidance is not doing the alignment work that the paper claims. A second check is to evaluate on a subset of frames with fast-moving objects and see whether the reported gains over SOLOFusion persist when displacements are large.
Extended reading notes
Core claim
OnlineBEV's central claim is that a single recurrently maintained BEV feature can outperform a multi-frame memory bank, provided the stored feature is aligned with the current frame before fusion. Alignment is performed by MBFNet: a Motion Feature Extractor forms a motion map from the channel-wise difference between historical and current BEV features, and a Motion-Guided BEV Warping Attention module uses deformable attention to sample from the historical feature at offsets and weights produced by that motion map. The aligned historical feature is fused with the current one, the result becomes the new memory, and a heatmap-based temporal consistency loss pushes the aligned history to resemble the current frame during training. The paper reports that with a V2-99 backbone this pipeline obtains 55.8% mAP and 63.9% NDS on the nuScenes test split, surpassing the previous camera-only state of the art, and that the same framework improves BEV segmentation and 3D occupancy prediction.
Load-bearing premise
The whole gain rests on the assumption that the channel-wise difference between the historical BEV feature and the current one is a reliable guide to where and how much each feature should move when aligning history to the present.
Editorial extensions
If this is right
- A recurrent design with one stored BEV feature can replace a 17-frame parallel memory bank at better accuracy, reducing memory use from 3.9 GB to 3.4 GB.
- Dynamic-object misalignment, the main obstacle to long-range temporal fusion, can be handled by deformable attention guided by motion differences rather than by explicit optical flow.
- The gain transfers beyond 3D detection: OnlineBEV raises BEV segmentation mIoU by 2.9 points and 3D occupancy mIoU by 1.2 points over SOLOFusion on nuScenes val.
- Under synthetic motion blur and occlusion, OnlineBEV degrades less than SOLOFusion, widening its mAP and NDS advantage under corrupted inputs.
- Because the method keeps only one historical feature and does not need future frames, it is compatible with streaming inference, though the dense BEV cost remains higher than sparse query-based methods.
Reading between the lines
- Editorial inference: if the channel-difference motion signal is a learnable proxy for optical flow, the same alignment module could be extended with explicit per-object velocity supervision from LiDAR or radar, which the authors list as future work.
- Editorial inference: the stop-gradient design of the consistency loss resembles teacher–student anchoring, so a temporal ensemble or exponential-moving-average version of the target heatmap might stabilize very long sequences even further.
- Editorial inference: the same motion-guided alignment could be transferred to other dense BEV tasks, such as HD map construction or panoptic segmentation, where temporal consistency across moving objects also matters.
- Editorial inference: the reported memory and accuracy numbers suggest that the performance ceiling of temporal fusion may be set more by alignment quality than by the number of frames, which would redirect future work toward better motion models rather than bigger memory banks.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes OnlineBEV, a recurrent temporal fusion framework for multi-camera BEV-based 3D perception. Instead of storing and fusing a fixed-length window of historical BEV features, OnlineBEV keeps a single historical feature map and updates it recurrently. To handle motion-induced misalignment, the Motion-Guided BEV Fusion Network (MBFNet) extracts motion features as channel-wise differences between historical and current BEV features and uses them to guide deformable attention in Motion-Guided BEV Warping Attention (MGWA). A Heatmap-based Temporal Consistency Loss (HTC-loss) further encourages alignment by penalizing differences between heatmaps derived from the aligned historical features and the current features. Experiments on nuScenes report state-of-the-art 3D detection results (63.9% NDS on the test set), improved BEV segmentation and 3D occupancy prediction, robustness to synthetic corruptions, and generalization to Argoverse 2.
Significance. If the reported results are consistent and reproducible, the recurrent BEV fusion design with motion-guided alignment is a worthwhile contribution: it reduces memory usage relative to parallel temporal fusion, supports dense tasks such as BEV segmentation and occupancy prediction, and shows improved robustness under motion blur and occlusion. The paper also provides a useful complexity comparison and an ablation on Argoverse 2. However, the empirical support for the central state-of-the-art claim is weakened by an internal inconsistency between the main comparison table and the full-model ablation, by the absence of error bars or multiple runs given the very small test-set margin over SparseBEV, and by the lack of released code or checkpoints for independent verification. These issues are fixable but need to be addressed before the claims can be accepted.
major comments (2)
- [Section IV-C/IV-D, Tables I and IV] The full-model ablation and the main comparison table report different numbers for the same configuration. Table IV, Method (c), which is the complete OnlineBEV with recurrent fusion, MBFNet, and HTC-loss, lists 42.5 mAP / 51.9 NDS on the nuScenes val set with ResNet50 at 256x704. Table I lists the same configuration (ResNet50, 256x704, recurrent) as 44.4 mAP / 54.5 NDS. No difference in training schedule, pretraining, or augmentation is described in Section IV-B that would explain this gap. The discrepancy (1.9 mAP / 2.6 NDS) is larger than the individual gains attributed to MBFNet (1.3 mAP / 1.0 NDS) or HTC-loss (0.4 mAP / 0.5 NDS) in Table IV, making the component ablations and the headline comparison mutually inconsistent. The authors must either reconcile these numbers by reporting the missing details or rerun the affected experiments, and update the tables and claims accordingly.
- [Section IV-C, Table II] The test-set state-of-the-art claim rests on a margin of 0.2 mAP and 0.3 NDS over SparseBEV. The paper reports a single evaluation without error bars, multiple seeds, or any statistical significance test, and no code or checkpoints are provided. Given the size of the margin relative to typical run-to-run variation in this benchmark, the claim that OnlineBEV 'records state-of-the-art performance' is not robust unless the authors provide uncertainty estimates or otherwise demonstrate that the difference is consistent across runs.
minor comments (5)
- [Section III-A, Eq. (2)] Equation (2) uses the notation M(l)_{t-1}(p) for the motion feature, but the motion feature is defined in Eq. (1) as M(l)_t. Please make the time-index subscript consistent.
- [Section IV-D.2] The text says 'the baseline model is derived by disabling MFE in Method (b) of Table III,' but the ablation table is Table IV; Table III reports BEV segmentation and occupancy results. This appears to be a typo.
- [Table VII] The caption reads 'PERFORMANCE COMPARISON ON THE CORRUPTED NUSCENES TEST SET,' but the original inputs in the table (42.7 mAP / 53.4 NDS for SOLOFusion and 44.4 mAP / 54.5 NDS for OnlineBEV) match the validation set numbers in Table I. The caption should say 'validation set' unless the table reports test-set evaluations.
- [Section III-C] The consistency-loss weight w_cons is set to 2 'based on our experiments,' but no sensitivity analysis is reported. Since HTC-loss contributes only 0.5 NDS in the ablation, a small sweep or a fixed-choice justification would clarify how sensitive the improvement is to this hyperparameter.
- [Section III-A] The raw channel-wise difference in Eq. (1) is presented as a way to capture object motion, but the paper does not discuss cases where appearance changes (e.g., lighting, viewpoint, occlusion) also produce large differences. A brief discussion of why this simple difference is expected to encode displacement would strengthen the motivation.
Circularity Check
No significant circularity: the method's central claims are evaluated on an external benchmark with standard supervised losses, and no load-bearing step reduces to its own inputs.
full rationale
The paper's central empirical claim is benchmark performance on nuScenes, where val and test metrics are compared against externally published methods under a fixed public benchmark. The motion feature extractor (Eq. 1) and motion-guided warping attention (Eq. 2) are architectural components trained end-to-end with supervised detection losses; their contribution is assessed by ablations (Tables IV and V) on the held-out validation split, not by the objective they optimize. The HTC-loss (Eq. 6) is an auxiliary training regularizer: it directly minimizes heatmap disagreement, but its reported benefit is downstream mAP/NDS, an external measure, so the loss is not being presented as a prediction of that benefit. Setting w_cons to 2 is a normal validation-set hyperparameter choice, not a fitted value renamed as a prediction. The paper invokes no uniqueness theorem, and no load-bearing argument reduces to a self-citation chain. The only notable weakness is an internal inconsistency between the full-model ablation (Table IV Method (c): 42.5 mAP / 51.9 NDS) and the main comparison table (Table I OnlineBEV: 44.4 mAP / 54.5 NDS) under the same ResNet50/256x704 configuration; that is a reproducibility/correctness concern, not a circularity, because neither number is derived from the other by definition. Accordingly, no circular step is present and the honest finding is a score of 0.
Assumptions & free parameters
free parameters (1)
- w_cons =
2.0
assumptions (3)
- domain assumption LSS-based depth estimation provides a reliable transformation from perspective view to BEV space.
- domain assumption Deformable attention can learn to align BEV features using only motion features from feature differences.
- domain assumption Ego-motion compensation accurately aligns static scene elements between frames.
Cite this review
Pith. "Pith review of OnlineBEV: Recurrent Temporal Fusion in Bird's Eye View Representations for Multi-Camera 3D Perception." pith.science (2026). https://pith.science/paper/PNUWYHYN
@misc{pith2026250708644,
author = {Pith},
title = {Pith review of: OnlineBEV: Recurrent Temporal Fusion in Bird's Eye View Representations for Multi-Camera 3D Perception},
year = {2026},
howpublished = {\url{https://pith.science/paper/PNUWYHYN}},
note = {Machine review of arXiv:2507.08644}
}
read the original abstract
Multi-view camera-based 3D perception can be conducted using bird's eye view (BEV) features obtained through perspective view-to-BEV transformations. Several studies have shown that the performance of these 3D perception methods can be further enhanced by combining sequential BEV features obtained from multiple camera frames. However, even after compensating for the ego-motion of an autonomous agent, the performance gain from temporal aggregation is limited when combining a large number of image frames. This limitation arises due to dynamic changes in BEV features over time caused by object motion. In this paper, we introduce a novel temporal 3D perception method called OnlineBEV, which combines BEV features over time using a recurrent structure. This structure increases the effective number of combined features with minimal memory usage. However, it is critical to spatially align the features over time to maintain strong performance. OnlineBEV employs the Motion-guided BEV Fusion Network (MBFNet) to achieve temporal feature alignment. MBFNet extracts motion features from consecutive BEV frames and dynamically aligns historical BEV features with current ones using these motion features. To enforce temporal feature alignment explicitly, we use Temporal Consistency Learning Loss, which captures discrepancies between historical and target BEV features. Experiments conducted on the nuScenes benchmark demonstrate that OnlineBEV achieves significant performance gains over the current best method, SOLOFusion. OnlineBEV achieves 63.9% NDS on the nuScenes test set, recording state-of-the-art performance in the camera-only 3D object detection task.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Bevdet: High- performance multi-camera 3d object detection in bird-eye-view,
J. Huang, G. Huang, Z. Zhu, Y . Ye, and D. Du, “Bevdet: High- performance multi-camera 3d object detection in bird-eye-view,” arXiv:2112.11790, 2021
arXiv 2021
-
[2]
Bevdepth: Acquisition of reliable depth for multi-view 3d object detection,
Y . Li, Z. Ge, G. Yu, J. Yang, Z. Wang, Y . Shi, J. Sun, and Z. Li, “Bevdepth: Acquisition of reliable depth for multi-view 3d object detection,” inProc. AAAI Conf. Artif. Intell., vol. 37, no. 2, 2023, pp. 1477–1485
2023
-
[3]
Aedet: Azimuth-invariant multi-view 3d object detection,
C. Feng, Z. Jie, Y . Zhong, X. Chu, and L. Ma, “Aedet: Azimuth-invariant multi-view 3d object detection,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2023, pp. 21 580–21 588
work page 2023
-
[4]
Fb- bev: Bev representation from forward-backward view transformations,
Z. Li, Z. Yu, W. Wang, A. Anandkumar, T. Lu, and J. M. Alvarez, “Fb- bev: Bev representation from forward-backward view transformations,” inProc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 6919–6928
work page 2023
-
[5]
Sa-bev: Generating semantic- aware bird’s-eye-view feature for multi-view 3d object detection,
J. Zhang, Y . Zhang, Q. Liu, and Y . Wang, “Sa-bev: Generating semantic- aware bird’s-eye-view feature for multi-view 3d object detection,” in Proc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 3348–3357
work page 2023
-
[6]
Detr3d: 3d object detection from multi-view images via 3d-to-2d queries,
Y . Wang, V . C. Guizilini, T. Zhang, Y . Wang, H. Zhao, and J. Solomon, “Detr3d: 3d object detection from multi-view images via 3d-to-2d queries,” inProc. Conf. Robot Learn.PMLR, 2022, pp. 180–191
work page 2022
-
[7]
Petr: Position embedding transformation for multi-view 3d object detection,
Y . Liu, T. Wang, X. Zhang, and J. Sun, “Petr: Position embedding transformation for multi-view 3d object detection,” inProc. Eur . Conf. Comput. Vis.Springer, 2022, pp. 531–548
work page 2022
-
[8]
Viewpoint equivariance for multi-view 3d object detection,
D. Chen, J. Li, V . Guizilini, R. A. Ambrus, and A. Gaidon, “Viewpoint equivariance for multi-view 3d object detection,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2023, pp. 9213–9222
work page 2023
Show all 43 references
-
[9]
Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unprojecting to 3d,
J. Philion and S. Fidler, “Lift, splat, shoot: Encoding images from arbitrary camera rigs by implicitly unprojecting to 3d,” inProc. Eur . Conf. Comput. Vis.Springer, 2020, pp. 194–210
2020
-
[10]
Bevdet4d: Exploit temporal cues in multi- camera 3d object detection,
J. Huang and G. Huang, “Bevdet4d: Exploit temporal cues in multi- camera 3d object detection,”arXiv:2203.17054, 2022
2022 arXiv
-
[11]
Bevstereo: Enhancing depth estimation in multi-view 3d object detection with temporal stereo,
Y . Li, H. Bao, Z. Ge, J. Yang, J. Sun, and Z. Li, “Bevstereo: Enhancing depth estimation in multi-view 3d object detection with temporal stereo,” inProc. AAAI Conf. Artif. Intell., vol. 37, no. 2, 2023, pp. 1486–1494
2023
-
[12]
Predict to detect: Prediction- guided 3d object detection using sequential images,
S. Kim, Y . Kim, I.-J. Lee, and D. Kum, “Predict to detect: Prediction- guided 3d object detection using sequential images,” inProc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 18 057–18 066
2023
-
[13]
Time will tell: New outlooks and a baseline for temporal multi-view 3d object detection,
J. Park, C. Xu, S. Yang, K. Keutzer, K. M. Kitani, M. Tomizuka, and W. Zhan, “Time will tell: New outlooks and a baseline for temporal multi-view 3d object detection,” inInt. Conf. Learn. Representations, 2022
2022
-
[14]
Sparsebev: High- performance sparse 3d object detection from multi-camera videos,
H. Liu, Y . Teng, T. Lu, H. Wang, and L. Wang, “Sparsebev: High- performance sparse 3d object detection from multi-camera videos,” in Proc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 18 580–18 590
2023
-
[15]
Exploring object-centric temporal modeling for efficient multi-view 3d object detection,
S. Wang, Y . Liu, T. Wang, Y . Li, and X. Zhang, “Exploring object-centric temporal modeling for efficient multi-view 3d object detection,” inProc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 3621–3631
2023
-
[16]
Deformable detr: De- formable transformers for end-to-end object detection,
X. Zhu, W. Su, L. Lu, B. Li, X. Wang, and J. Dai, “Deformable detr: De- formable transformers for end-to-end object detection,”arXiv:2010.04159, 2020
2010 arXiv
-
[17]
nuscenes: A multimodal dataset for autonomous driving,
H. Caesar, V . Bankiti, A. H. Lang, S. V ora, V . E. Liong, Q. Xu, A. Krishnan, Y . Pan, G. Baldan, and O. Beijbom, “nuscenes: A multimodal dataset for autonomous driving,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2020, pp. 11 621–11 631
2020
-
[18]
One stage monocular 3d object detection utilizing discrete depth and orientation representation,
M. A. Haq, S.-J. Ruan, M.-E. Shao, Q. M. U. Haq, P.-J. Liang, and D.-Q. Gao, “One stage monocular 3d object detection utilizing discrete depth and orientation representation,”IEEE Trans. Intell. Transp. Syst., vol. 23, no. 11, pp. 21 630–21 640, 2022
2022
-
[19]
Occlusion-aware plane-constraints for monocular 3d object detection,
H. Yao, J. Chen, Z. Wang, X. Wang, P. Han, X. Chai, and Y . Qiu, “Occlusion-aware plane-constraints for monocular 3d object detection,” IEEE Trans. Intell. Transp. Syst., 2023
2023
-
[20]
Shape-aware monocular 3d object detection,
W. Chen, J. Zhao, W.-L. Zhao, and S.-Y . Wu, “Shape-aware monocular 3d object detection,”IEEE Trans. Intell. Transp. Syst., vol. 24, no. 6, pp. 6416–6424, 2023
2023
-
[21]
Bevformer: Learning bird’s-eye-view representation from multi-camera JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, JULY 2025 10 images via spatiotemporal transformers,
Z. Li, W. Wang, H. Li, E. Xie, C. Sima, T. Lu, Y . Qiao, and J. Dai, “Bevformer: Learning bird’s-eye-view representation from multi-camera JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, JULY 2025 10 images via spatiotemporal transformers,” inProc. Eur . Conf. Comput. Vis.Spring...
2025
-
[22]
A stereo matching algorithm with an adaptive window: Theory and experiment,
T. Kanade and M. Okutomi, “A stereo matching algorithm with an adaptive window: Theory and experiment,”IEEE Trans. Pattern Anal. Mach. Intell., vol. 16, no. 9, pp. 920–932, 1994
1994
-
[23]
Detr4d: Direct multi-view 3d object detection with sparse attention,
Z. Luo, C. Zhou, G. Zhang, and S. Lu, “Detr4d: Direct multi-view 3d object detection with sparse attention,”arXiv:2212.07849, 2022
2022 arXiv
-
[24]
Sparse4d: Multi-view 3d object detection with sparse spatial-temporal fusion,
X. Lin, T. Lin, Z. Pei, L. Huang, and Z. Su, “Sparse4d: Multi-view 3d object detection with sparse spatial-temporal fusion,”arXiv:2211.10581, 2022
2022 arXiv
-
[25]
Consistency-based semi- supervised learning for object detection,
J. Jeong, S. Lee, J. Kim, and N. Kwak, “Consistency-based semi- supervised learning for object detection,” vol. 32, pp. 10 759–10 768, 2019
2019
-
[26]
Semi-supervised semantic segmenta- tion with cross-consistency training,
Y . Ouali, C. Hudelot, and M. Tami, “Semi-supervised semantic segmenta- tion with cross-consistency training,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2020, pp. 12 674–12 684
2020
-
[27]
An unsupervised temporal consistency (tc) loss to improve the performance of semantic segmentation networks,
S. Varghese, S. Gujamagadi, M. Klingner, N. Kapoor, A. Bar, J. D. Schneider, K. Maag, P. Schlicht, F. Huger, and T. Fingscheidt, “An unsupervised temporal consistency (tc) loss to improve the performance of semantic segmentation networks,” inProc. IEEE/CVF Conf. Comput. Vis. P...
2021
-
[28]
Mask- free video instance segmentation,
L. Ke, M. Danelljan, H. Ding, Y .-W. Tai, C.-K. Tang, and F. Yu, “Mask- free video instance segmentation,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2023, pp. 22 857–22 866
2023
-
[29]
Squeeze-and-excitation networks,
J. Hu, L. Shen, and G. Sun, “Squeeze-and-excitation networks,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2018, pp. 7132–7141
2018
-
[30]
Dropout: a simple way to prevent neural networks from overfitting,
N. Srivastava, G. Hinton, A. Krizhevsky, I. Sutskever, and R. Salakhutdi- nov, “Dropout: a simple way to prevent neural networks from overfitting,” J. Mach. Learn. Res., vol. 15, no. 1, pp. 1929–1958, 2014
1929
-
[31]
Layer normalization,
J. L. Ba, J. R. Kiros, and G. E. Hinton, “Layer normalization,” arXiv:1607.06450, 2016
2016 arXiv
-
[32]
Center-based 3d object detection and tracking,
T. Yin, X. Zhou, and P. Krahenbuhl, “Center-based 3d object detection and tracking,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2021, pp. 11 784–11 793
2021
-
[33]
Focal loss for dense object detection,
T.-Y . Lin, P. Goyal, R. Girshick, K. He, and P. Doll ´ar, “Focal loss for dense object detection,” inProc. IEEE/CVF Int. Conf. Comput. Vis., 2017, pp. 2980–2988
2017
-
[34]
Petrv2: A unified framework for 3d perception from multi-camera images,
Y . Liu, J. Yan, F. Jia, S. Li, A. Gao, T. Wang, and X. Zhang, “Petrv2: A unified framework for 3d perception from multi-camera images,” in Proc. IEEE/CVF Int. Conf. Comput. Vis., 2023, pp. 3262–3272
2023
-
[35]
Argoverse 2: Next generation datasets for self-driving perception and forecasting,
B. Wilson, W. Qi, T. Agarwal, J. Lambert, J. Singh, S. Khandelwal, B. Pan, R. Kumar, A. Hartnett, J. K. Ponteset al., “Argoverse 2: Next generation datasets for self-driving perception and forecasting,”arXiv preprint arXiv:2301.00493, 2023
2023 arXiv
-
[36]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2016, pp. 770–778
2016
-
[37]
An energy and gpu- computation efficient backbone network for real-time object detection,
Y . Lee, J.-w. Hwang, S. Lee, Y . Bae, and J. Park, “An energy and gpu- computation efficient backbone network for real-time object detection,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit. Workshops, 2019, pp. 0–0
2019
-
[38]
Decoupled weight decay regularization,
I. Loshchilov and F. Hutter, “Decoupled weight decay regularization,” 2019
2019
-
[39]
Is pseudo-lidar needed for monocular 3d object detection?
D. Park, R. Ambrus, V . Guizilini, J. Li, and A. Gaidon, “Is pseudo-lidar needed for monocular 3d object detection?” inProc. IEEE/CVF Int. Conf. Comput. Vis., 2021, pp. 3142–3152
2021
-
[40]
Imagenet: A large-scale hierarchical image database,
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei, “Imagenet: A large-scale hierarchical image database,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2009, pp. 248–255
2009
-
[41]
A convnet for the 2020s,
Z. Liu, H. Mao, C.-Y . Wu, C. Feichtenhofer, T. Darrell, and S. Xie, “A convnet for the 2020s,” inProc. IEEE/CVF Conf. Comput. Vis. Pattern Recognit., 2022, pp. 11 976–11 986
2022
-
[42]
Benchmarking robustness of 3d object detection to common corruptions,
Y . Dong, C. Kang, J. Zhang, Z. Zhu, Y . Wang, X. Yang, H. Su, X. Wei, and J. Zhu, “Benchmarking robustness of 3d object detection to common corruptions,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 1022–1032
2023
-
[43]
Benchmarking the robustness of lidar-camera fusion for 3d object detection,
K. Yu, T. Tao, H. Xie, Z. Lin, T. Liang, B. Wang, P. Chen, D. Hao, Y . Wang, and X. Liang, “Benchmarking the robustness of lidar-camera fusion for 3d object detection,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2023, pp. 3188–3198. BI...
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.