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_m.py 357 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
  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.67
  10. self.width = 0.75
  11. self.exp_name = os.path.split(os.path.realpath(__file__))[1].split(".")[0]
Tip!

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

Comments

Loading...