728x90
코랩환경에서, 캐글로부터 이미지를 다운 가정~
!wget --no-check-certificate \
https://storage.googleapis.com/mledu-datasets/cats_and_dogs_filtered.zip \
-O /tmp/cats_and_dogs_filtered.zip
### 압축풀기
import os # 필요 설정
import zipfile
local_zip = '/tmp/cats_and_dogs_filtered.zip' # 코랩 tmp 폴더안의 다운받은 파일 경로
zip_ref = zipfile.ZipFile(local_zip, 'r')
zip_ref.extractall('/tmp/cats_and_dogs_filtered') # tmp폴더의 cats_and_dogs_filtered 폴더로 압축 풀기.
zip_ref.close()
'IT 프로그래밍 관련 > 딥러닝' 카테고리의 다른 글
CNN으로 이미지 파일 시험코드 (0) | 2021.03.03 |
---|---|
타임시리즈 데이터분석용 Prophet 라이브러리 (0) | 2021.03.03 |
CNN ImageDataGenerator 활용 (모델링) (0) | 2021.03.02 |
Callback함수 사용법 코드 (0) | 2021.03.02 |
분류 문제에서, 컴파일에 사용할 loss함수 선택 방법과 코드 (0) | 2021.03.02 |
댓글