Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
data_analysis:certification [2022/04/07 06:40] – [응시후기] prgramdata_analysis:certification [2025/07/07 14:12] (current) – external edit 127.0.0.1
Line 4: Line 4:
 https://cafe.naver.com/sqlpd https://cafe.naver.com/sqlpd
  
 +
 +==== DAsP 데이터아키텍쳐 자격검정 ====
 +https://dataonair.or.kr/db-tech-reference/d-guide/da-guide/
  
 ==== Tensorflow Developer Certification ==== ==== Tensorflow Developer Certification ====
 +https://www.tensorflow.org/extras/cert/TF_Certificate_Candidate_Handbook_ko.pdf?hl=ko
 ===환경설정=== ===환경설정===
   * https://www.tensorflow.org/extras/cert/Setting_Up_TF_Developer_Certificate_Exam.pdf 에 맞는 버전으로 설치 (Python, Pycharm, 라이브러리들)   * https://www.tensorflow.org/extras/cert/Setting_Up_TF_Developer_Certificate_Exam.pdf 에 맞는 버전으로 설치 (Python, Pycharm, 라이브러리들)
-    * CUDA 오류 : https://sheepone.tistory.com/126+    * CUDA 오류 : https://sheepone.tistory.com/126 설치 후 시스템 환경설정에서 PATH 변수에 경로를 추가해주어야 함. 
 + 
 +  * Tensorflow버전에 따른 CUDA, CUDNN 맞는 버전 : https://www.tensorflow.org/install/source_windows?hl=en#gpu 
 +  * failed to create cublas handle:CUBLAS_STATUS_ALLOC_FAILED 에러 : https://blog.naver.com/PostView.nhn?blogId=euue717&logNo=222119993339 
 +<code python> 
 +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 내용 출력 
 +</code> 
 + 
 + 
 + 
 +  * 
  
 ===응시후기=== ===응시후기===
  • data_analysis/certification.1649313605.txt.gz
  • Last modified: 2025/07/07 14:12
  • (external edit)