Features: - `MultiPlots` for easier displaying multiple plots in Jupyter Notebook. - Merge namespace of `util.func` and `util.type` for both package
Fix: - Refactor notebook display tools
0.1.30
Features: - `iou_2d` to evaluate IoU score for 2D areas.
Fix: - Auto log metrics in `NekoModel.test_step` - Fix the wrong implementation of positional encoding and class token in `TransformerEncoderBlock`
0.1.29
Features: - Add `Seq.sort` method, to sort the sequence by itself or any given key. - Add `progress_bar` and `parallel_type` argument for `Stream.for_each` and `Stream.with_for_each` to support progress bar and run in parallel.
0.1.28
Features: - Add `parallel_type` argument for `Seq.map` and `Seq.for_each`. The default value is `None`. When one `ParallelType` is assigned to this argument, the program will run this step with multiple processes or threads. - Add `Seq.with_for_each` return self but with running `for_each`.
0.1.27
Features: - `for_each` methods for `AbstractSeq` (`Seq` and `Stream`). - Add `progress_bar` argument for `Seq.map` and `Seq.for_each`. It will use `tqdm` progress bar.
0.1.26
Features: - Add default implementation for `predict_step` and `test_step` in `NekoModel` - Add `parallel_map` for `Seq` with 2 types of parallel methods, thread and process.
Fix: - Add constrain to `torchmetrics` as the compatibility issue of `pytorch_lightning`.