Skip to content
Snippets Groups Projects
  1. Jan 30, 2023
    • 谢昕辰's avatar
      Bump v1.0.0rc4 (#2529) · 18ee41eb
      谢昕辰 authored
      18ee41eb
    • Miao Zheng's avatar
      [Fix]Fix mmcv version 2.0.0rc3 for win test (#2531) · 981f3a48
      Miao Zheng authored
      as title
      981f3a48
    • Siddharth Ancha's avatar
      [Fix] Unfinished label conversion from `-1` to `255` in 1.x (#2516) · d1c0a3ef
      Siddharth Ancha authored
      ## Motivation
      
      This is motivated by a previously unfinished PR (#2332). In that PR, the
      label -1 was changed to 255 in `BaseSegDataset`, which is correct.
      However, it was changed at only one location. There is another location
      in `mmseg/datasets/basesegdataset.py` where -1 was still being used that
      was not converted to 255. I have now converted it to 255.
      
      This is exactly same as a similar fix to the `master` branch via #2515 .
      
      ## Modification
      
      I've simply converted the snipped
      
      ```python
      if new_id != -1:
          new_palette.append(palette[old_id])
      ```
      to 
      ```python
      if new_id != 255:
          new_palette.append(palette[old_id])
      ```
      
      ## Checklist
      
      - [x] Pre-commit or other linting tools are used to fix the potential
      lint issues.
        - _I've fixed all linting/pre-commit errors._
      - [x] The modification is covered by complete unit tests. If not, please
      add more unit test to ensure the correctness.
        - _No unit tests need to be added or were affected.
      - [x] If the modification has potential influence on downstream
      projects, this PR should be tested with downstream projects, like MMDet
      or MMDet3D.
        - _I don't think this change affects MMDet or MMDet3D._
      - [x] The documentation has been modified accordingly, like docstring or
      example tutorials.
      - _This change fixes an existing bug and doesn't require modifying any
      documentation/docstring._
      d1c0a3ef
    • Siddharth Ancha's avatar
      [Fix] Switch order of `reduce_zero_label` and applying `label_map` in 1.x (#2517) · 74e8b89b
      Siddharth Ancha authored
      This is an almost exact duplicate of #2500 (that was made to the
      `master` branch) now applied to the `1.x` branch.
      
      ---
      
      ## Motivation
      
      I want to fix a bug through this PR. The bug occurs when two options --
      `reduce_zero_label=True`, and custom classes are used.
      `reduce_zero_label` remaps the GT seg labels by remapping the zero-class
      to 255 which is ignored. Conceptually, this should occur *before* the
      `label_map` is applied, which maps *already reduced labels*. However,
      currently, the `label_map` is applied before the zero label is reduced.
      
      ## Modification
      
      The modification is simple:
      - I've just interchanged the order of the two operations by moving a few
      lines from bottom to top.
      - I've added a test that passes when the fix is introduced, and fails on
      the original `master` branch.
      
      ## BC-breaking (Optional)
      
      I do not anticipate this change braking any backward-compatibility.
      
      ## Checklist
      
      - [x] Pre-commit or other linting tools are used to fix the potential
      lint issues.
        - _I've fixed all linting/pre-commit errors._
      - [x] The modification is covered by complete unit tests. If not, please
      add more unit test to ensure the correctness.
        - _I've added a unit test._ 
      - [x] If the modification has potential influence on downstream
      projects, this PR should be tested with downstream projects, like MMDet
      or MMDet3D.
        - _I don't think this change affects MMDet or MMDet3D._
      - [x] The documentation has been modified accordingly, like docstring or
      example tutorials.
      - _This change fixes an existing bug and doesn't require modifying any
      documentation/docstring._
      74e8b89b
    • Siddharth Ancha's avatar
    • 谢昕辰's avatar
  2. Jan 22, 2023
  3. Jan 20, 2023
  4. Jan 19, 2023
  5. Jan 17, 2023
  6. Jan 13, 2023
    • 谢昕辰's avatar
      [Doc] Fix API document (#2483) · d505ec1c
      谢昕辰 authored
      ## Motivation
      
      As title.
      
      ## Modification
      
      - docs/en/api.rst
      - docs/zh_cn/api.rst
      - add `scipy` to readthedocs requirement.
      d505ec1c
  7. Jan 12, 2023
    • Tianlong Ai's avatar
      CodeCamp #151[Feature] Support HieraSeg on cityscapes (#2444) · ce09639a
      Tianlong Ai authored
      ## Support `HieraSeg` interface on `cityscapes`
      
      ## Motivation
      
      Support `HieraSeg` interface on cityscapes dataset  
      Paper link : https://ieeexplore.ieee.org/document/9878466/
      
      ```
      @article{li2022deep,
        title={Deep Hierarchical Semantic Segmentation},
        author={Li, Liulei and Zhou, Tianfei and Wang, Wenguan and Li, Jianwu and Yang, Yi},
        journal={CVPR},
        year={2022}
      }
      ```
      
      ## Modification
      
      Add `HieraSeg_Projects` on `projects/`
      Add `sep_aspp_contrast_head` decoder head.
      Add `HieraSeg` config.
      Add `hiera_loss`, `hiera_triplet_loss_cityscape`, `tree_triplet_loss`
      ce09639a
  8. Jan 11, 2023
    • Wencheng Wu's avatar
      [Feature] Add `gt_edge_map` field. (#2466) · 8dae9465
      Wencheng Wu authored
      ## Motivation
      
      The motivation of this PR is to add `gt_edge_map` field to support
      boundary loss.
      
      ## Modification
      
      - GenerateEdge
      Modify `gt_edge` field to `gt_edge_map`.
      
      - PackSegInputs
      Add `gt_edge_map` to data_sample.
      
      - stack_batch
      Pad `gt_edge_map` to max_shape.
      
      ## BC-breaking (Optional)
      
      No
      
      ## Use cases (Optional)
      
      Reference `GenerateEdge`.
      8dae9465
    • MengzhangLI's avatar
      [Doc] Update ZN dataset preparation of Synapse (#2465) · 546f3b5b
      MengzhangLI authored
      ## Motivation
      - Add Chinese version of Synapse dataset preparation.
      - Modify all `,` and `。` to `,` and `.` in
      `docs/zh_cn/user_guides/2_dataset_prepare.md`.
      546f3b5b
  9. Jan 10, 2023
  10. Jan 09, 2023
  11. Jan 06, 2023
  12. Jan 04, 2023
  13. Jan 03, 2023
  14. Jan 02, 2023
  15. Dec 31, 2022
    • Miao Zheng's avatar
      Bump 1.0.0rc3 (#2446) · 6eb1a95a
      Miao Zheng authored
      ## Motivation
      
      To release 1.0.0rc3  
      
      ## Modification
      
      1. Modify mmseg version 
      2. Add change log
      3. Modify README
      4. Modify faq 
      5. Revise docker file
      6eb1a95a
    • Miao Zheng's avatar
      [Fix]Fix pt version for merge stage test (#2449) · e727e92a
      Miao Zheng authored
      ## Motivation
      
      The conflict is caused by:
          The user requested torch==1.12.1+cpu
          torchvision 0.13.0+cpu depends on torch==1.12.0
      
      ## Modification
      
      modify the torch==1.12.0+cpu
      e727e92a
  16. Dec 30, 2022
Loading