henry000 commited on
Commit
183312f
·
1 Parent(s): 542860e

🎨 [Update] the import order of yolo.py

Browse files
Files changed (1) hide show
  1. model/yolo.py +6 -4
model/yolo.py CHANGED
@@ -1,10 +1,12 @@
1
- import torch.nn as nn
 
 
2
  import torch
 
3
  from loguru import logger
4
- from typing import Dict, Any, List, Union
5
- import inspect
6
- from utils.tools import load_model_cfg
7
  from model import module
 
8
 
9
 
10
  def get_layer_map():
 
1
+ import inspect
2
+ from typing import Any, Dict, List, Union
3
+
4
  import torch
5
+ import torch.nn as nn
6
  from loguru import logger
7
+
 
 
8
  from model import module
9
+ from utils.tools import load_model_cfg
10
 
11
 
12
  def get_layer_map():