티스토리 뷰
from google.colab import auth
auth.authenticate_user()
from google.colab import drive
drive.mount('/content/gdrive')
root_dir = "/content/gdrive/My Drive/"
import pandas as pd
df = pd.read_csv(root_dir+'example_air_passengers.csv')
1
2
3
|
# Colab 서버 스펙 확인
from tensorflow.python.client import device_lib
device_lib.list_local_devices()
|
cs |
1
2
|
import platform
platform.platform()
|
cs |
'Linux-4.19.104+-x86_64-with-Ubuntu-18.04-bionic'
1
|
!cat /etc/issue.net
|
cs |
Ubuntu 18.04.3 LTS
1
|
!cat /proc/meminfo
|
cs |
1
|
!cat /proc/cpuinfo
|
cs |
1
|
!df -h
|
cs |
1
|
!nvidia-smi
|
cs |
1
|
!python --version
|
cs |
Python 3.6.9
1
|
!ls
|
cs |
sample_data
1
2
|
from tensorflow.python.client import device_lib
device_lib.list_local_devices()
|
cs |
1
2
3
|
# 파일 처리
%%writefile test.py
print('hello world!')
|
cs |
Overwriting test.py
1
2
|
# test.py 실행시키기
%run test.py
|
cs |
hello world!
1
2
3
|
from google.colab import files
# 브라우저에 다운로드 됨을 확인할 수 있다.
files.download('test.py')
|
cs |
1
2
3
4
|
# [Cancel upload] 버튼을 클릭하여 잠시 멈춘 후 파일선택 버튼을 클릭하면
# PC 내 파일을 선택할 수 있는 다이얼로그 창이 뜬다.
# 리턴값을 받는 변수인 myupload라는 이름의 디렉토리가 생성된다.
myupload = files.upload()
|
cs |
1
2
3
4
|
# 구글드라이브 연동
import os
print(os.getcwd())
!ls
|
cs |
/content
sample_data test.py
1
2
3
4
|
# 실행시 등장하는 URL을 클릭하여 허용해주면 인증KEY가 나타난다.
# 복사하여 URL아래 빈칸에 붙여넣으면 마운트에 성공하게된다.
from google.colab import drive
drive.mount('./MyDrive')
|
cs |
1
2
|
# 마운트된 내 드라이브를 확인해보자
!ls
|
cs |
MyDrive sample_data test.py
1
2
3
4
5
|
from google.colab import auth
auth.authenticate_user()
from google.colab import drive
drive.mount('/content/gdrive')
|
cs |
1
|
%pwd /content/gdrive/
|
cs |
'/content/gdrive/My Drive'
1
2
3
4
|
root_dir = "/content/gdrive/My Drive/"
import pandas as pd
df = pd.read_csv(root_dir+'example_air_passengers.csv')
df
|
cs |
https://zzsza.github.io/data/2018/08/30/google-colab/
Kaggle 연동하기
'5. 파이썬' 카테고리의 다른 글
[Telaviv] 뉴스 데이터 수집 (0) | 2020.05.30 |
---|---|
HanBert 네이버 긍정부정 댓글 판단 (10) | 2020.05.30 |
텐서플로/2020-05/텐진/ cifar10_model.ipynb (0) | 2020.05.29 |
83541. cat_and_dog.ipynb (0) | 2020.05.29 |
[파이썬] 인공지능 개발환경 아나콘다(Anaconda) , 파이참(Pycharm) 설치하기 (0) | 2020.05.24 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Algorithm
- vscode
- Python
- ERD
- Oracle
- AWS
- JPA
- React
- terms
- COLAB
- tensorflow
- mariadb
- nodejs
- docker
- KAFKA
- jQuery
- Git
- JUnit
- database
- Mlearn
- FLASK
- SQLAlchemy
- Java
- Django
- Mongo
- maven
- Eclipse
- intellij
- SpringBoot
- springMVC
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함