implemented locking in training setup
This commit is contained in:
15
backend/data/yolox_x.py
Normal file
15
backend/data/yolox_x.py
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding:utf-8 -*-
|
||||
# Base configuration for YOLOX-X model
|
||||
# These parameters are preserved during transfer learning from COCO
|
||||
|
||||
class BaseExp:
|
||||
"""Base experiment configuration for YOLOX-X"""
|
||||
|
||||
# Model architecture (protected - always use these for yolox-x)
|
||||
depth = 1.33
|
||||
width = 1.25
|
||||
|
||||
scheduler = "yoloxwarmcos"
|
||||
|
||||
activation = "silu"
|
||||
Reference in New Issue
Block a user