Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

yolox_tiny.py 540 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  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.375
  11. self.input_size = (416, 416)
  12. self.mosaic_scale = (0.5, 1.5)
  13. self.random_size = (10, 20)
  14. self.test_size = (416, 416)
  15. self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]
  16. self.enable_mixup = False
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...