boostcampaitech4lv23cv3 / level2_semanticsegmentation_cv-level2-cv-14

level2_semanticsegmentation_cv-level2-cv-14 created by GitHub Classroom
0 stars 3 forks source link

Feat: Weight save #3

Closed juyoung-hong closed 1 year ago

juyoung-hong commented 1 year ago

Overview

Change Log

To Reviewer

train시 아래 명령어로 테스트 할 수 있습니다.

python src/train.py name='test'

inference시 아래 명령어로 테스트 할 수 있습니다. 이전에 비해 달라진 점은 name이 아닌 weight라는 인자를 주어야하며, 이때 saved는 제외하고 saved폴더 안에 있는 test/best_mIoU.pt를 선택하여 주어야 합니다.

saved
 ├─test
    ├─best_IoU.pt
    ├─best_Ioss.pt
    ├─epoch_0.pt
    └─epoch_1.pt
python src/inference.py weight='test/best_mIoU.pt'

결과적으로 submission 폴더 내에 'test/best_mIoU.csv' 파일이 생성됩니다.

Issue Tags

2

GeonHyeock commented 1 year ago

정상적으로 작동하는것을 확인했습니다.!!