!unzip -q -o zip파일 열기

Yelim Kim·2021년 12월 4일
0

Kaggle

목록 보기
22/29

캐글에서 데이터셋을 옮겨올 때 zip파일 형식으로 된 데이터들을 사용하는 방법이다.

!unzip -q -o #주소#.zip

압축을 푼 다음엔 아래와 같은 방법으로 개수를 확인할 수 있다.

n_train = len(os.listdir('./train'))
n_test = len(os.listdir('./test'))
print(f'Train images: {n_train}')
print(f' Test images: {n_test}')
profile
뜬금없지만 세계여행이 꿈입니다.

0개의 댓글