Mmdet

Latest version: v3.3.0

Safety actively analyzes 683530 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 15

1.1.0rc1

Highlights

- Support a camera-only 3D detection baseline on Waymo, [MV-FCOS3D++](https://arxiv.org/abs/2207.12716)

New Features

- Support a camera-only 3D detection baseline on Waymo, [MV-FCOS3D++](https://arxiv.org/abs/2207.12716), with new evaluation metrics and transformations (#1716)
- Refactor PointRCNN in the framework of mmdet3d v1.1 (1819)

Improvements

- Add `auto_scale_lr` in config to support training with auto-scale learning rates (1807)
- Fix CI (1813, 1865, 1877)
- Update `browse_dataset.py` script (1817)
- Update SUN RGB-D and Lyft datasets documentation (1833)
- Rename `convert_to_datasample` to `add_pred_to_datasample` in detectors (1843)
- Update customized dataset documentation (1845)
- Update `Det3DLocalVisualization` and visualization documentation (1857)
- Add the code of generating `cam_sync_labels` for Waymo dataset (1870)
- Update dataset transforms typehints (1875)

Bug Fixes

- Fix missing registration of models in [setup_env.py](https://github.com/open-mmlab/mmdetection3d/blob/dev-1.x/mmdet3d/utils/setup_env.py) (#1808)
- Fix the data base sampler bugs when using the ground plane data (1812)
- Add output directory existing check during visualization (1828)
- Fix bugs of nuScenes dataset for monocular 3D detection (1837)
- Fix visualization hook to support the visualization of different data modalities (1839)
- Fix monocular 3D detection demo (1864)
- Fix the lack of `num_pts_feats` key in nuscenes dataset and complete docstring (1882)

Contributors

A total of 10 developers contributed to this release.

ZwwWayne, Tai-Wang, lianqing11, VVsssssk, ZCMax, Xiangxu-0103, JingweiZhang12, tpoisonooo, ice-tong, jshilong

New Contributors
* ice-tong made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1838

**Full Changelog**: https://github.com/open-mmlab/mmdetection3d/compare/v1.1.0rc0...v1.1.0rc1

1.1.0rc0

We are excited to announce the release of MMDetection3D 1.1.0rc0.
MMDet3D 1.1.0rc0 is the first version of MMDetection3D 1.1, a part of the OpenMMLab 2.0 projects.
Built upon the new [training engine](https://github.com/open-mmlab/mmengine) and [MMDet 3.x](https://github.com/open-mmlab/mmdetection/tree/3.x),
MMDet3D 1.1 unifies the interfaces of dataset, models, evaluation, and visualization with faster training and testing speed.
It also provides a standard data protocol for different datasets, modalities, and tasks for 3D perception.
We will support more strong baselines in the future release, with our latest exploration on camera-only 3D detection from videos.

Highlights

1. **New engines**. MMDet3D 1.1 is based on [MMEngine](https://github.com/open-mmlab/mmengine) and [MMDet 3.x](https://github.com/open-mmlab/mmdetection/tree/3.x), which provides a universal and powerful runner that allows more flexible customizations and significantly simplifies the entry points of high-level interfaces.

2. **Unified interfaces**. As a part of the OpenMMLab 2.0 projects, MMDet3D 1.1 unifies and refactors the interfaces and internal logics of train, testing, datasets, models, evaluation, and visualization. All the OpenMMLab 2.0 projects share the same design in those interfaces and logics to allow the emergence of multi-task/modality algorithms.

3. **Standard data protocol for all the datasets, modalities, and tasks for 3D perception**. Based on the unified base datasets inherited from MMEngine, we also design a standard data protocol that defines and unifies the common keys across different datasets, tasks, and modalities. It significantly simplifies the usage of multiple datasets and data modalities for multi-task frameworks and eases dataset customization. Please refer to the [documentation of customized datasets](../advanced_guides/customize_dataset.md) for details.

4. **Strong baselines**. We will release strong baselines of many popular models to enable fair comparisons among state-of-the-art models.

5. **More documentation and tutorials**. We add a bunch of documentation and tutorials to help users get started more smoothly. Read it [here](https://mmdetection3d.readthedocs.io/en/1.1/).

Breaking Changes

MMDet3D 1.1 has undergone significant changes to have better design, higher efficiency, more flexibility, and more unified interfaces.
Besides the changes of API, we briefly list the major breaking changes in this section.
We will update the [migration guide](../migration.md) to provide complete details and migration instructions.
Users can also refer to the [compatibility documentation](./compatibility.md) and [API doc](https://mmdetection3d.readthedocs.io/en/1.1/) for more details.

Dependencies

- MMDet3D 1.1 runs on PyTorch>=1.6. We have deprecated the support of PyTorch 1.5 to embrace the mixed precision training and other new features since PyTorch 1.6. Some models can still run on PyTorch 1.5, but the full functionality of MMDet3D 1.1 is not guaranteed.
- MMDet3D 1.1 relies on MMEngine to run. MMEngine is a new foundational library for training deep learning models of OpenMMLab and are widely depended by OpenMMLab 2.0 projects. The dependencies of file IO and training are migrated from MMCV 1.x to MMEngine.
- MMDet3D 1.1 relies on MMCV>=2.0.0rc0. Although MMCV no longer maintains the training functionalities since 2.0.0rc0, MMDet3D 1.1 relies on the data transforms, CUDA operators, and image processing interfaces in MMCV. Note that the package `mmcv` is the version that provides pre-built CUDA operators and `mmcv-lite` does not since MMCV 2.0.0rc0, while `mmcv-full` has been deprecated since 2.0.0rc0.
- MMDet3D 1.1 is based on MMDet 3.x, which is also a part of OpenMMLab 2.0 projects.

Training and testing

- MMDet3D 1.1 uses Runner in [MMEngine](https://github.com/open-mmlab/mmengine) rather than that in MMCV. The new Runner implements and unifies the building logic of dataset, model, evaluation, and visualizer. Therefore, MMDet3D 1.1 no longer relies on the building logics of those modules in `mmdet3d.train.apis` and `tools/train.py`. Those code have been migrated into [MMEngine](https://github.com/open-mmlab/mmengine/blob/main/mmengine/runner/runner.py). Please refer to the [migration guide of Runner in MMEngine](https://mmengine.readthedocs.io/en/latest/migration/runner.html) for more details.
- The Runner in MMEngine also supports testing and validation. The testing scripts are also simplified, which has similar logic as that in training scripts to build the runner.
- The execution points of hooks in the new Runner have been enriched to allow more flexible customization. Please refer to the [migration guide of Hook in MMEngine](https://mmengine.readthedocs.io/en/latest/migration/hook.html) for more details.
- Learning rate and momentum scheduling has been migrated from Hook to [Parameter Scheduler in MMEngine](https://mmengine.readthedocs.io/en/latest/tutorials/param_scheduler.html). Please refer to the [migration guide of Parameter Scheduler in MMEngine](https://mmengine.readthedocs.io/en/latest/migration/param_scheduler.html) for more details.

Configs

- The [Runner in MMEngine](https://github.com/open-mmlab/mmengine/blob/main/mmengine/runner/runner.py) uses a different config structure to ease the understanding of the components in runner. Users can read the [config example of MMDet3D 1.1](../user_guides/config.md) or refer to the [migration guide in MMEngine](https://mmengine.readthedocs.io/en/latest/migration/runner.html) for migration details.
- The file names of configs and models are also refactored to follow the new rules unified across OpenMMLab 2.0 projects. The names of checkpoints are not updated for now as there is no BC-breaking of model weights between MMDet3D 1.1 and 1.0.x. We will progressively replace all the model weights by those trained in MMDet3D 1.1. Please refer to the [user guides of config](../user_guides/config.md) for more details.

Dataset

The Dataset classes implemented in MMDet3D 1.1 all inherits from the `Det3DDataset` and `Seg3DDataset`, which inherits from the [BaseDataset in MMEngine](https://mmengine.readthedocs.io/en/latest/advanced_tutorials/basedataset.html). In addition to the changes of interfaces, there are several changes of Dataset in MMDet3D 1.1.

- All the datasets support to serialize the internal data list to reduce the memory when multiple workers are built for data loading.
- The internal data structure in the dataset is changed to be self-contained (without losing information like class names in MMDet3D 1.0.x) while keeping simplicity.
- Common keys across different datasets and data modalities are defined and all the info files are unified into a standard protocol.
- The evaluation functionality of each dataset has been removed from dataset so that some specific evaluation metrics like KITTI AP can be used to evaluate the prediction on other datasets.

Data Transforms

The data transforms in MMDet3D 1.1 all inherits from `BaseTransform` in MMCV>=2.0.0rc0, which defines a new convention in OpenMMLab 2.0 projects.
Besides the interface changes, there are several changes listed as below:

- The functionality of some data transforms (e.g., `Resize`) are decomposed into several transforms to simplify and clarify the usages.
- The format of data dict processed by each data transform is changed according to the new data structure of dataset.
- Some inefficient data transforms (e.g., normalization and padding) are moved into data preprocessor of model to improve data loading and training speed.
- The same data transforms in different OpenMMLab 2.0 libraries have the same augmentation implementation and the logic given the same arguments, i.e., `Resize` in MMDet 3.x and MMSeg 1.x will resize the image in the exact same manner given the same arguments.

Model

The models in MMDet3D 1.1 all inherits from `BaseModel` in MMEngine, which defines a new convention of models in OpenMMLeb 2.0 projects.
Users can refer to [the tutorial of model in MMengine](https://mmengine.readthedocs.io/en/latest/tutorials/model.html) for more details.
Accordingly, there are several changes as the following:

- The model interfaces, including the input and output formats, are significantly simplified and unified following the new convention in MMDet3D 1.1.
Specifically, all the input data in training and testing are packed into `inputs` and `data_samples`, where `inputs` contains model inputs like a dict contain a list of image tensors and the point cloud data, and `data_samples` contains other information of the current data sample such as ground truths, region proposals, and model predictions. In this way, different tasks in MMDet3D 1.1 can share the same input arguments, which makes the models more general and suitable for multi-task learning and some flexible training paradigms like semi-supervised learning.
- The model has a data preprocessor module, which are used to pre-process the input data of model. In MMDet3D 1.1, the data preprocessor usually does necessary steps to form the input images into a batch, such as padding. It can also serve as a place for some special data augmentations or more efficient data transformations like normalization.
- The internal logic of model have been changed. In MMDet3D 1.1, model uses `forward_train`, `forward_test`, `simple_test`, and `aug_test` to deal with different model forward logics. In MMDet3D 1.1 and OpenMMLab 2.0, the forward function has three modes: 'loss', 'predict', and 'tensor' for training, inference, and tracing or other purposes, respectively.
The forward function calls `self.loss`, `self.predict`, and `self._forward` given the modes 'loss', 'predict', and 'tensor', respectively.

Evaluation

The evaluation in MMDet3D 1.0.x strictly binds with the dataset. In contrast, MMDet3D 1.1 decomposes the evaluation from dataset, so that all the detection dataset can evaluate with KITTI AP and other metrics implemented in MMDet3D 1.1.
MMDet3D 1.1 mainly implements corresponding metrics for each dataset, which are manipulated by [Evaluator](https://mmengine.readthedocs.io/en/latest/design/evaluator.html) to complete the evaluation.
Users can build evaluator in MMDet3D 1.1 to conduct offline evaluation, i.e., evaluate predictions that may not produced in MMDet3D 1.1 with the dataset as long as the dataset and the prediction follows the dataset conventions. More details can be find in the [tutorial in mmengine](https://mmengine.readthedocs.io/en/latest/tutorials/evaluation.html).

Visualization

The functions of visualization in MMDet3D 1.1 are removed. Instead, in OpenMMLab 2.0 projects, we use [Visualizer](https://mmengine.readthedocs.io/en/latest/design/visualization.html) to visualize data. MMDet3D 1.1 implements `Det3DLocalVisualizer` to allow visualization of 2D and 3D data, ground truths, model predictions, and feature maps, etc., at any place. It also supports to send the visualization data to any external visualization backends such as Tensorboard.

Planned changes

We list several planned changes of MMDet3D 1.1.0rc0 so that the community could more comprehensively know the progress of MMDet3D 1.1. Feel free to create a PR, issue, or discussion if you are interested, have any suggestions and feedbacks, or want to participate.

1. Test-time augmentation: which is supported in MMDet3D 1.0.x, is not implemented in this version due to limited time slot. We will support it in the following releases with a new and simplified design.
2. Inference interfaces: a unified inference interfaces will be supported in the future to ease the use of released models.
3. Interfaces of useful tools that can be used in notebook: more useful tools that implemented in the `tools` directory will have their python interfaces so that they can be used through notebook and in downstream libraries.
4. Documentation: we will add more design docs, tutorials, and migration guidance so that the community can deep dive into our new design, participate the future development, and smoothly migrate downstream libraries to MMDet3D 1.1.
5. Wandb visualization: MMDet 2.x supports data visualization by WandB since v2.25.0, which has not been migrated to MMDet 3.x for now. Since Wandb provides strong visualization and experiment management capabilities, a `DetWandbVisualizer` and maybe a hook are planned to fully migrated those functionalities in MMDet 2.x and a `Det3DWandbVisualizer` will be supported in MMDet3D 1.1 accordingly.
6. Will support recent new features added in MMDet3D 1.0.x and our recent exploration on camera-only 3D detection from videos: we will refactor these models and support them with benchmarks and models soon.

Contributors
A total of 6 developers contributed to this release.
Thanks ZCMax , jshilong, VVsssssk, Tai-Wang , lianqing11, ZwwWayne

1.0.0

New Contributors
* lyuwenyu made their first contribution in https://github.com/open-mmlab/mmdetection/pull/545
* lzhbrian made their first contribution in https://github.com/open-mmlab/mmdetection/pull/569
* liuzili97 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/576
* zhijl made their first contribution in https://github.com/open-mmlab/mmdetection/pull/630
* liushuchun made their first contribution in https://github.com/open-mmlab/mmdetection/pull/653
* wondervictor made their first contribution in https://github.com/open-mmlab/mmdetection/pull/610
* libuyu made their first contribution in https://github.com/open-mmlab/mmdetection/pull/706
* sovrasov made their first contribution in https://github.com/open-mmlab/mmdetection/pull/734
* SlideLucask made their first contribution in https://github.com/open-mmlab/mmdetection/pull/739
* cclauss made their first contribution in https://github.com/open-mmlab/mmdetection/pull/750
* stupidZZ made their first contribution in https://github.com/open-mmlab/mmdetection/pull/730
* hellocsi made their first contribution in https://github.com/open-mmlab/mmdetection/pull/774
* Joker316701882 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/733
* sty-yyj made their first contribution in https://github.com/open-mmlab/mmdetection/pull/737
* chensnathan made their first contribution in https://github.com/open-mmlab/mmdetection/pull/846
* luxiin made their first contribution in https://github.com/open-mmlab/mmdetection/pull/810
* ozps made their first contribution in https://github.com/open-mmlab/mmdetection/pull/867
* nattichai made their first contribution in https://github.com/open-mmlab/mmdetection/pull/865
* zhangtemplar made their first contribution in https://github.com/open-mmlab/mmdetection/pull/882
* eugenelawrence made their first contribution in https://github.com/open-mmlab/mmdetection/pull/907
* dsuess made their first contribution in https://github.com/open-mmlab/mmdetection/pull/881
* wswday made their first contribution in https://github.com/open-mmlab/mmdetection/pull/969
* run-me made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1004
* TzuChanChuang made their first contribution in https://github.com/open-mmlab/mmdetection/pull/975
* michaelisc made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1038
* ternaus made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1049
* dmarnerides made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1058
* wuyuebupt made their first contribution in https://github.com/open-mmlab/mmdetection/pull/809
* IliaLarchenko made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1107
* ramkakarala made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1108
* dhananjaisharma10 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1115
* Borda made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1233
* gfjiangly made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1250
* SebastianoF made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1244
* ancientmooner made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1256
* yansun1996 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1306
* Lyken17 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1326
* chongruo made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1359
* donglee-afar made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1251
* RaymondKirk made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1384
* Zidet made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1404
* taokong made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1339
* tyomj made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1354
* Howal made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1528
* mattdawkins made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1497
* korabelnikov made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1580
* thomashossler made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1693
* nero19960329 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1716
* valuefish made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1399
* tkhe made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1826
* DXist made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1647
* karolmajek made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1834
* CuriousCat-7 made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1899
* saltknox made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1906
* GothicAi made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1739
* hust-kevin made their first contribution in https://github.com/open-mmlab/mmdetection/pull/1872

**Full Changelog**: https://github.com/open-mmlab/mmdetection/compare/v0.6.0...v1.0.0

1.0.0rc6

New Features

- Add `Projects/` folder and the first example project (2082)

Improvements

- Update Waymo converter to save storage space (1759)
- Update model link and performance of CenterPoint (1916)

Bug Fixes

- Fix GPU memory occupancy problem in PointRCNN (1928)
- Fix sampling bug in `IoUNegPiecewiseSampler` (2018)

Contributors

A total of 6 developers contributed to this release.

oyel, zzj403, VVsssssk, Tai-Wang, tpoisonooo, JingweiZhang12, ZCMax, ZwwWayne


**Full Changelog**: https://github.com/open-mmlab/mmdetection3d/compare/v1.0.0rc5...v1.0.0rc6

1.0.0rc5

New Features

- Support ImVoxelNet on SUN RGB-D (1738)

Improvements

- Fix the cross-codebase reference problem in metafile README (1644)
- Update the Chinese documentation about getting started (1715)
- Fix docs link and add docs link checker (1811)

Bug Fixes

- Fix a visualization bug that is potentially triggered by empty prediction labels (1725)
- Fix point cloud segmentation visualization bug due to wrong parameter passing (1858)
- Fix Nan loss bug during PointRCNN training (1874)

Contributors

A total of 11 developers contributed to this release.

ZwwWayne, Tai-Wang, filaPro, VVsssssk, ZCMax, Xiangxu-0103, holtvogt, tpoisonooo, lianqing01, TommyZihao, aditya9710

New Contributors

* tpoisonooo made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1614
* holtvogt made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1725
* TommyZihao made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1778
* aditya9710 made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1889

**Full Changelog**: https://github.com/open-mmlab/mmdetection3d/compare/v1.0.0rc4...v1.0.0rc5

1.0.0rc4

Highlights

- Support [FCAF3D](https://arxiv.org/pdf/2112.00322.pdf)

New Features

- Support [FCAF3D](https://arxiv.org/pdf/2112.00322.pdf) (#1547)
- Add the transformation to support multi-camera 3D object detection (1580)
- Support lift-splat-shoot view transformer (1598)

Improvements

- Remove the limitation of the maximum number of points during SUN RGB-D preprocessing (1555)
- Support circle CI (1647)
- Add mim to extras_require in setup.py (1560, 1574)
- Update dockerfile package version (1697)

Bug Fixes

- Flip yaw angle for DepthInstance3DBoxes.overlaps (1548, 1556)
- Fix DGCNN configs (1587)
- Fix bbox head not registered bug (1625)
- Fix missing objects in S3DIS preprocessing (1665)
- Fix spconv2.0 model loading bug (1699)

Contributors

A total of 9 developers contributed to this release.

Tai-Wang, ZwwWayne, filaPro, lianqing11, ZCMax, HuangJunJie2017, Xiangxu-0103, ChonghaoSima, VVsssssk

New Contributors
* HuangJunJie2017 made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1580
* ChonghaoSima made their first contribution in https://github.com/open-mmlab/mmdetection3d/pull/1614

**Full Changelog**: https://github.com/open-mmlab/mmdetection3d/compare/v1.0.0rc3...v1.0.0rc4

Page 11 of 15

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.