chongruo / detectron2-ResNeSt

A fork of Detectron2 with ResNeSt backbone
https://arxiv.org/abs/2004.08955
Apache License 2.0
385 stars 73 forks source link

## ❓ How to merge this repo with detectron2 master? #39

Closed fangchengji closed 4 years ago

fangchengji commented 4 years ago

❓ How to merge this repo with detectron2 master?

I found the ResNeSt code is all included in resnet.py and splat.py. Besides, this repo uses fvcore==0.1.dev200407, which is different with detectron2 master requirements "fvcore>=0.1.1". Could you tell me what you guys do with fvcore 0.1.dev200407? Could we split this content from fvcore?

Cyril9227 commented 4 years ago

You have to add the keys used by ResNeSt to the default config, then you can add those 2 files under modeling/backbone and change the init

fangchengji commented 4 years ago

You have to add the keys used by ResNeSt to the default config, then you can add those 2 files under modeling/backbone and change the init

Thanks for your kindly remind. I have added these config keys. I found it was another merged bug. I tested ResNeSt repo with fvcore==0.1.1, it worked fine. My bad.