open-mmlab / mmdetection3d

OpenMMLab's next-generation platform for general 3D object detection.
https://mmdetection3d.readthedocs.io/en/latest/
Apache License 2.0
5.31k stars 1.54k forks source link

[Docs] Traceback (most recent call last): File "tools/train.py", line 135, in <module> main() File "tools/train.py", line 124, in main runner = Runner.from_cfg(cfg) File "/home/qwe/.local/lib/python3.8/site-packages/mmengine/runner/runner.py", line 445, in from_cfg runner = cls( File "/home/qwe/.local/lib/python3.8/site-packages/mmengine/runner/runner.py", line 292, in __init__ raise ValueError( ValueError: train_dataloader, train_cfg, and optim_wrapper should be either all None or not None, but got train_dataloader=None, train_cfg={'type': 'EpochBasedTrainLoop', 'max_epochs': 12, 'val_interval': 1}, optim_wrapper={'type': 'OptimWrapper', 'optimizer': {'type': 'SGD', 'lr': 0.02, 'momentum': 0.9, 'weight_decay': 0.0001}}. #2744

Open duanmushuangquan opened 1 year ago

duanmushuangquan commented 1 year ago

Branch

main branch https://mmdetection3d.readthedocs.io/en/latest/

📚 The doc issue

I am in the mmdetection3d directory and haven't made any modifications; I directly executed the command:

CUDA_VISIBLE_DEVICES=1 python tools/train.py mmdetection3d/configs/nuimages/cascade-mask-rcnn_r50_fpn_1x_nuim.py --work-dir res_train_1_cascade_mask_rcnn

But I received an error.

Traceback (most recent call last):
  File "tools/train.py", line 135, in <module>
    main()
  File "tools/train.py", line 124, in main
    runner = Runner.from_cfg(cfg)
  File "/home/qwe/.local/lib/python3.8/site-packages/mmengine/runner/runner.py", line 445, in from_cfg
    runner = cls(
  File "/home/qwe/.local/lib/python3.8/site-packages/mmengine/runner/runner.py", line 292, in __init__
    raise ValueError(
ValueError: train_dataloader, train_cfg, and optim_wrapper should be either all None or not None, but got train_dataloader=None, train_cfg={'type': 'EpochBasedTrainLoop', 'max_epochs': 12, 'val_interval': 1}, optim_wrapper={'type': 'OptimWrapper', 'optimizer': {'type': 'SGD', 'lr': 0.02, 'momentum': 0.9, 'weight_decay': 0.0001}}.

Suggest a potential alternative/fix

No response

mondalanindya commented 11 months ago

Did anyone find any fix?

Chenhongchang commented 10 months ago

@mondalanindya @duanmushuangquan Hi! Did anyone find any fix?

Chenhongchang commented 10 months ago

I have fixed it. I set train_cfg, and optim_wrapper to none and it works. @mondalanindya @duanmushuangquan