π [Merge] branch 'MODEL' into TEST
Browse files- yolo/model/yolo.py +1 -0
yolo/model/yolo.py
CHANGED
@@ -24,6 +24,7 @@ class YOLO(nn.Module):
|
|
24 |
self.layer_map = get_layer_map() # Get the map Dict[str: Module]
|
25 |
self.model: List[YOLOLayer] = nn.ModuleList()
|
26 |
self.build_model(model_cfg.model)
|
|
|
27 |
log_model(self.model)
|
28 |
|
29 |
def build_model(self, model_arch: Dict[str, List[Dict[str, Dict[str, Dict]]]]):
|
|
|
24 |
self.layer_map = get_layer_map() # Get the map Dict[str: Module]
|
25 |
self.model: List[YOLOLayer] = nn.ModuleList()
|
26 |
self.build_model(model_cfg.model)
|
27 |
+
# TODO: Move to other position
|
28 |
log_model(self.model)
|
29 |
|
30 |
def build_model(self, model_arch: Dict[str, List[Dict[str, Dict[str, Dict]]]]):
|