반응형
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
- vscode
- classification
- inorder
- CES 2O21 참가
- java역사
- web 사진
- postorder
- 대이터
- paragraph
- web 용어
- KNeighborsClassifier
- pycharm
- web
- CES 2O21 참여
- 재귀함수
- tensorflow
- 자료구조
- web 개발
- mglearn
- bccard
- C언어
- 웹 용어
- html
- 결합전문기관
- Keras
- discrete_scatter
- cudnn
- broscoding
- 머신러닝
- 데이터전문기관
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