categorical crossentropy 손실 함수1 운동자세 판별 딥러닝 프로젝트 (OpenCV, Numpy, Pandas, TensorFlow) 프로젝트 상세 분석 및 설명 1. 데이터 준비 및 전처리코드 블록:root_dir = 'dataset/train'img_path_list = []possible_img_extension = ['.jpg', '.jpeg', '.JPG', '.bmp', '.png']for (root, dirs, files) in os.walk(root_dir): if len(files) > 0: for file_name in files: if os.path.splitext(file_name)[1] in possible_img_extension: img_path = root + '/' + file_name img_path = img_.. 2024. 8. 31. 이전 1 다음