데이터분석 자격증 관련 자료

네이버 데이터전문가 포럼
https://cafe.naver.com/sqlpd

DAsP 데이터아키텍쳐 자격검정

Tensorflow Developer Certification

환경설정

import tensorflow as tf
gpu = tf.config.experimental.list_physical_devices('GPU') # 내 컴에 장착된 GPU를 list로 반환
try:
    tf.config.experimental.set_memory_growth(gpu[0], True) # GPU Memory Growth를 Enable
except RuntimeError as e:
    print(e) # Error 발생하면 Error 내용 출력

응시후기

Tip 정리

1. 데이터 셋 정확한 비율로 올바르게 분할했는지

  1. 문제 조건에 맞는 in/output shape 확인
  2. Data Augmentation

2. 단순히 epoch 늘려보기

  1. ReLU 대신 LeakyReLU
  2. learning rate 조금씩 키우기 (epoch 늘리기엔 학습시간 부족할 때)

3. 추가 레이어

  1. 레이어 종류
  2. Dropout
  3. Conv. 레이어 필터 수 줄여보기

4. Callback : early stop

Enter your comment:
G H L P C