boostcampaitech3 / level2-data-annotation_cv-level2-cv-16

[부스트캠프 AI Tech 3기 / CV-16] 글자 검출 대회 Data Annotation (22.04.11 - 22.04.22)
1 stars 3 forks source link

[Discussion] convert_mlp.py file problem #18

Closed yehyunsuh closed 2 years ago

yehyunsuh commented 2 years ago

What

앞의 #17 을 해결하고 나서 python convert_mlt.py를 실행하는 과정에서 생긴 문제

Why

해당 python file의 경로 부분은

SRC_DATASET_DIR = '/opt/ml/input/data/ICDAR17_MLT'  
DST_DATASET_DIR = '/opt/ml/input/data/ICDAR17_Korean'  

위와 같이 수정 후 진행

image

image의 개수와 label.txt의 개수가 다르다고 나오는데, 직접 확인한 결과 다르지 않았음. 무엇이 문제일까요?

how

yehyunsuh commented 2 years ago

현재 진행 상황 class MLT17Dataset()안의 40번째 줄인 assert len(image_paths) == len(label_paths)에서 오류가 나서

print(len(image_paths)) # 7200
print(len(label_paths))   # 0

을 통해 확인한 결과 image path는 제대로 나오는데, label path가 제대로 나오지 않음.

yehyunsuh commented 2 years ago

17 comment를 통해 해결방법 적어놓았습니다. .sh파일에 gt에 대한 unzip을 설정해두지 않아서 생긴 오류였습니다. issue close하겠습니다.