henry000 commited on
Commit
c01f496
Β·
1 Parent(s): 684d672

πŸ“ [Add] TODO, need move log model to other place

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]]]]):