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