250x250
반응형
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 | 31 |
Tags
- hadoop
- session 유지
- gather_nd
- API Gateway
- XAI
- GenericGBQException
- API
- flask
- grad-cam
- requests
- Retry
- tensorflow text
- 유튜브 API
- 공분산
- Counterfactual Explanations
- integrated gradient
- subdag
- UDF
- TensorFlow
- BigQuery
- youtube data
- airflow subdag
- spark udf
- chatGPT
- Airflow
- 상관관계
- correlation
- GCP
- top_k
- login crawling
Archives
- Today
- Total
데이터과학 삼학년
pandas - GCP GCS 로 읽기, 쓰기 본문
반응형
Google Cloud의 storage인 GCS와 pandas간 호환이 된다는 사실~
읽고 쓰기 모두 가능
읽기
_CSV_COLUMNS = [
'contents','label'
]
training_file_path = 'gs://text/movie_train.csv'
train_df = pd.read_csv(training_file_path,
names=_CSV_COLUMNS,
encoding='utf-8')
쓰기
pred_df.to_csv('gs://text/movie_test_sequence.csv')
아주 간단하쥬?
다만 pandas를 gcs와 같이 쓰려면 dependencies한 파일로 gcsfs 라이브러리를 깔아놔야한다.
728x90
반응형
LIST
'GCP' 카테고리의 다른 글
Bigquery ML (0) | 2020.07.21 |
---|---|
Cloud Run VS Cloud Functions (0) | 2020.06.25 |
GCP ai-platform (cloudML)에서 환경 설정 (라이브러리 추가)-setup.py (0) | 2020.06.24 |
AutoML TimeSeries forecasting (0) | 2020.06.02 |
Cloud Natural Language API (GCP) (0) | 2020.06.01 |
Comments