使用paddledetection的时候发现,数据集的参数只能在配置文件里修改,不能通过参数的方式传入,自己修改了一下。
在trainer.py的78行增加下面代码
if cfg.dataset_dir:
self.dataset.dataset_dir = cfg.dataset_dir
在训练的时候,需要增加参数-o dataset_dir=路径
使用paddledetection的时候发现,数据集的参数只能在配置文件里修改,不能通过参数的方式传入,自己修改了一下。
在trainer.py的78行增加下面代码
if cfg.dataset_dir:
self.dataset.dataset_dir = cfg.dataset_dir
在训练的时候,需要增加参数-o dataset_dir=路径