henry000 commited on
Commit
121ac98
Β·
2 Parent(s): f2370d7 c01f496

πŸ”€ [Merge] branch 'MODEL' into TEST

Browse files
Files changed (1) hide show
  1. 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]]]]):