Piero Macaluso
commited on
Commit
·
45944c2
1
Parent(s):
d7debf7
fix(README): link to `yolox_base.py` (#1217)
Browse files
docs/train_custom_data.md
CHANGED
@@ -41,7 +41,7 @@ ln -s /path/to/your/VOCdevkit ./datasets/VOCdevkit
|
|
41 |
## 2. Create your Exp file to control everything
|
42 |
We put everything involved in a model to one single Exp file, including model setting, training setting, and testing setting.
|
43 |
|
44 |
-
**A complete Exp file is at [yolox_base.py](https://github.com/Megvii-BaseDetection/YOLOX/blob/main/yolox/exp/
|
45 |
|
46 |
Let's take the [VOC Exp file](https://github.com/Megvii-BaseDetection/YOLOX/blob/main/exps/example/yolox_voc/yolox_voc_s.py) as an example.
|
47 |
|
|
|
41 |
## 2. Create your Exp file to control everything
|
42 |
We put everything involved in a model to one single Exp file, including model setting, training setting, and testing setting.
|
43 |
|
44 |
+
**A complete Exp file is at [yolox_base.py](https://github.com/Megvii-BaseDetection/YOLOX/blob/main/yolox/exp/yolox_base.py).** It may be too long to write for every exp, but you can inherit the base Exp file and only overwrite the changed part.
|
45 |
|
46 |
Let's take the [VOC Exp file](https://github.com/Megvii-BaseDetection/YOLOX/blob/main/exps/example/yolox_voc/yolox_voc_s.py) as an example.
|
47 |
|