You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # encoding: utf-8
- import os
- from yolox.yolox.exp import Exp as MyExp
-
-
- class Exp(MyExp):
- def __init__(self):
- super(Exp, self).__init__()
- self.num_classes = 1
- self.depth = 0.33
- self.width = 0.50
- self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]
|