반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 데이터전문기관
- tensorflow
- broscoding
- postorder
- 머신러닝
- web 개발
- CES 2O21 참여
- C언어
- pycharm
- web
- 대이터
- KNeighborsClassifier
- vscode
- classification
- web 용어
- 웹 용어
- mglearn
- html
- 자료구조
- Keras
- web 사진
- 재귀함수
- inorder
- CES 2O21 참가
- bccard
- java역사
- discrete_scatter
- cudnn
- 결합전문기관
- paragraph
Archives
- Today
- Total
bro's coding
colab.up/down load local file 본문
반응형
'''로컬 파일 시스템의 파일 업로드
files.upload는 업로드된 파일의 사전을 반환합니다.
사전은 업로드된 파일 이름에 따라 키가 지정되며, 값은 업로드된 데이터를 표시합니다.'''
from google.colab import files
uploaded = files.upload()
for fn in uploaded.keys():
print('User uploaded file "{name}" with length {length} bytes'.format(
name=fn, length=len(uploaded[fn])))
'''로컬 파일 시스템으로 파일 다운로드
files.download는 파일의 브라우저 다운로드를 로컬 컴퓨터로 호출합니다.'''
from google.colab import files
with open('example.txt', 'w') as f:
f.write('some content')
files.download('example.txt')
https://colab.research.google.com/notebooks/io.ipynb#scrollTo=BaCkyg5CV5jF
반응형
'[AI] > google.colab' 카테고리의 다른 글
colab.GPU set (0) | 2020.05.13 |
---|---|
colab.시작하기 (0) | 2020.05.13 |
Comments