docker run -it --gpus all --ipc=host -v ${path_to_code}:/opt/ml/code -v ${path_to_dataset}:/opt/ml/data placidus36/pstage4_lightweight:v0.4 /bin/bash
pip install -r requirements.txt
python train.py --model ${path_to_model_config} --data ${path_to_data_config}
python inference.py --model_dir ${저장된 모델 root 경로} --weight_name ${모델 weight 이름} --img_root ${test 데이터 경로}