keras-team / keras-cv

Industry-strength Computer Vision workflows with Keras
Other
1.01k stars 330 forks source link

Refactor `ResNetBackbone` for readability #1808

Closed jbischof closed 1 year ago

jbischof commented 1 year ago

Our backbone modeling files are very large and hard to read. @LukeWood proposed two changes in #1745:

  1. move aliases to their own file
  2. move helpers below model declarations

1745 provides a nice template for this change for MobileNetBackbone. Replicate this change for keras_cv/models/backbones/resnet_v1/.

ID6109 commented 1 year ago

Here