반응형
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 |
Tags
- 재귀함수
- CES 2O21 참여
- web 사진
- html
- classification
- cudnn
- tensorflow
- 웹 용어
- pycharm
- web 개발
- 결합전문기관
- C언어
- web 용어
- Keras
- inorder
- 데이터전문기관
- 대이터
- broscoding
- paragraph
- vscode
- postorder
- 머신러닝
- bccard
- CES 2O21 참가
- java역사
- mglearn
- 자료구조
- discrete_scatter
- web
- KNeighborsClassifier
Archives
- Today
- Total
목록[AI]/google.colab (3)
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 file..
[AI]/google.colab
2020. 5. 13. 16:39