[Fix] Update correct In Collection in metafile of each configs.#1239
[Fix] Update correct In Collection in metafile of each configs.#1239MeowZheng merged 16 commits intoopen-mmlab:masterfrom
In Collection in metafile of each configs.#1239Conversation
Codecov Report
@@ Coverage Diff @@
## master #1239 +/- ##
=======================================
Coverage 90.24% 90.24%
=======================================
Files 131 131
Lines 7599 7599
Branches 1264 1264
=======================================
Hits 6858 6858
Misses 531 531
Partials 210 210
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
MeowZheng
left a comment
There was a problem hiding this comment.
Values of In Collection don't match the collection names
| @@ -1,5 +1,5 @@ | |||
| Collections: | |||
| - Name: erfnet | |||
There was a problem hiding this comment.
based on my limited knowledge, erfnet might be an algorithm not backbone
There was a problem hiding this comment.
This PR currently delete Collections dict in some backbone readme such as HRNet, Swin Transformer and so on because they may be supported in MMClassification. Other methods which is algorithm rather than backbones all keep Collections dict but the Collection['Name'] and Models['In Collection'] are the same value.
…en-mmlab#1239) * change md2yml file * update metafile * update twins In Collection automatically * fix twins metafile * fix twins metafile * all metafile use value of Method * update collect name * update collect name * fix some typo * fix FCN D6 * change JPU to FastFCN * fix some typos in DNLNet, NonLocalNet, SETR, Segmenter, STDC, FastSCNN * fix typo in stdc * fix typo in DNLNet and UNet * fix NonLocalNet typo
Motivation
Use correct
In Collectionnames of each method, especiallyIn Collectionand backbone ofMetadatashould be different.This pr would be merged after PR #1233 because they all modify
md2ymlfile.Related PR:
MMDetection3D: open-mmlab/mmdetection3d#1184.