Meta Byte Track
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

yolox_s.py 357B

123456789101112131415
  1. #!/usr/bin/env python3
  2. # -*- coding:utf-8 -*-
  3. # Copyright (c) Megvii, Inc. and its affiliates.
  4. import os
  5. from yolox.exp import Exp as MyExp
  6. class Exp(MyExp):
  7. def __init__(self):
  8. super(Exp, self).__init__()
  9. self.depth = 0.33
  10. self.width = 0.50
  11. self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]