Features
- Object Detection (Yolox, PPyoloE) predict function on images, videos, GIF, and folders paths. The predict function works out of the box, no need to define pre and post-processing. Both pre and post-processing are taken from the training. Examples [here](https://github.com/Deci-AI/super-gradients/tree/master/src/super_gradients/examples/predict). PR: [#815](https://github.com/Deci-AI/super-gradients/pull/815), [#804](https://github.com/Deci-AI/super-gradients/pull/804), [#807](https://github.com/Deci-AI/super-gradients/pull/807), [#829](https://github.com/Deci-AI/super-gradients/pull/829), [#845](https://github.com/Deci-AI/super-gradients/pull/845)
- Support yolov5 format detection dataset by for YoloX, PPyoloE https://github.com/Deci-AI/super-gradients/pull/847
- Base recipes for [PPYoloE](https://github.com/Deci-AI/super-gradients/blob/master/src/super_gradients/recipes/roboflow_ppyoloe.yaml) and [Yolox](https://github.com/Deci-AI/super-gradients/blob/master/src/super_gradients/recipes/roboflow_yolox.yaml) of RF100 dataset.
- [DetectionOutputAdapter tutorial](https://github.com/Deci-AI/super-gradients/blob/master/documentation/source/DetectionOutputAdapter.md). The DetectionOutputAdapter is a class that converts the output of a detection model into a user-appropriate format.
- [Segformer model and recipe](https://github.com/Deci-AI/super-gradients/pull/754)
- Predict function on images and videos - taking the pre+post processing from the training recipe.
- [QAT&PTQ notebooks](http://bit.ly/3KrN6an)
- Added student_adapter feature to KDModule, which lets the user pass a manipulated version of the input to the student model. PR: [820](https://github.com/Deci-AI/super-gradients/pull/820)
- Introduce min_samples param to dataloader_params, which repeats the dataset in case its size is smaller than the value of this parameter. PR: [838](https://github.com/Deci-AI/super-gradients/pull/838)
Bug fixes:
- Bug Fix wandb logger on resume by [Louis-Dupont](https://github.com/Louis-Dupont) in [#766](https://github.com/Deci-AI/super-gradients/pull/766)