안녕하세요.
실습 계정 링크
실습 파일 다운로드
pip install msrest
pip install matplotlib
pip install azure-cognitiveservices-vision-customvision
CustomVision 실습을 위한 꽃 이미지 데이터 샘플 파일입니다.
다운로드
============================================================
02 - Image Classification 실습중 아래 오류가 발생할 경우
ValueError: Number of rows must be a positive integer, not 3.0
아래 코드를 변경하시면 됩니다.
변경 전: a=fig.add_subplot(len(test_images)/3, 3,i+1)
변경 후: a=fig.add_subplot(int(len(test_images)/3), 3,i+1)