데이터과학 삼학년

Explore and Creating the Dataset 본문

Machine Learning

Explore and Creating the Dataset

Dan-k 2020. 2. 3. 16:15
반응형

Explore the Dataset

- dataset of births → 실습

  > 예측 weight_pounds

https://bigquery.cloud.google.com/table/bigquery-public-data:samples.natality

 

 

Creating the Dataset

- 좋은 피처란?

  > 예측할 시기에 데이터를 얻을 수 있나

- farm_fingerprint와 rand 함수를 이용해서 스몰데이터를 뽑고 쪼개고 할 수 있음

 

 

Build the Model

- ML 모델 적용 초기에는 train_and_evaluate을 바로 쓰는 것이 아니라 model.train, model.predict를 사용하여 잘작동하는 지 확인후 사용하라

- train_and_evaluate 사용 프로세스

  > train_spec, eval_spec 을 잘 정해줘야함

 



 

 

728x90
반응형
LIST

'Machine Learning' 카테고리의 다른 글

Operationalizing the Model  (0) 2020.02.03
ML Ops and Kubeflow Pipelines  (0) 2020.02.03
Preprocessing and feature creations (with Cloud Dataprep)  (0) 2020.02.03
Apache Beam / Cloud Dataflow  (0) 2020.01.18
Custom Estimator, Keras  (0) 2020.01.18
Comments