tidalove commited on
Commit
9748030
·
verified ·
1 Parent(s): 2e8683f

Create yolox_s.py

Browse files
Files changed (1) hide show
  1. exps/yolox_s.py +13 -0
exps/yolox_s.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from yolox.exp import Exp as MyExp
2
+
3
+
4
+ class Exp(MyExp):
5
+ def __init__(self):
6
+ super(Exp, self).__init__()
7
+ self.depth = 0.33
8
+ self.width = 0.50
9
+
10
+ self.num_classes = 18
11
+ self.test_conf = 0.3
12
+ self.nmsthre = 0.3
13
+ self.test_size = 640