You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# copy mono 3D example configcd config
cp Yolo3D_example $CONFIG_FILE.py
## Modify config path
nano $CONFIG_FILE.py
cd ..
## Compute image database and anchors mean/std# You can run ./launcher/det_precompute.sh without arguments to see helper documents
./launcher/det_precompute.sh config/$CONFIG_FILE.py train
./launcher/det_precompute.sh config/$CONFIG_FILE.py test# only for upload testing## train the model with one GPU# You can run ./launcher/train.sh without arguments to see helper documents
./launcher/train.sh --config/$CONFIG_FILE.py 0 $experiment_name# validation goes along## produce validation/test result # we only support single GPU testing# You can run ./launcher/eval.sh without arguments to see helper documents
./launcher/eval.sh --config/$CONFIG_FILE.py 0 $CHECKPOINT_PATH validation # test on validation split
./launcher/eval.sh --config/$CONFIG_FILE.py 0 $CHECKPOINT_PATHtest# test on test split