내가보려고쓰는tip

Colab에 로컬 파일 업로드

데이터켓 2021. 1. 19. 09:20

1. 로컬파일을 선택해서 Colab에 업로드

from google.colab import files
myfiles = files.upload()

2. 로컬 특정 경로를 마운트

from google.colab import drive
drive.mount('/local/folder')

마운트 하기위해서는 계정인증과 토큰을 받아서 입력해야한다.