[ 기본 환경 구축 ] Pycharm Tensorflow Error 임시조치(?)하기
·
Archive/Develop
어제 신나게 주피터 노트북으로 여러가지 테스트를 해보다가, 이제 파이참을 가지고 해보자! 해서 파이참 환경에서 이것저것 만져보았다. 인터프리터 설정을 새로 해주고, 모든게 완벽해졌다고 생각했는데,,, import tensorflow as tf hallo = tf.constant('why?' ) print(hallo) - 테스트용 코드 This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN)to use the following CPU instructions in performance-critical operations: AVX AVX2 To enable them in other operations, rebuild..
[ 인공지능 ] Machine Learning Basic 001
·
Archive/Hacking
해당 포스팅은 인공지능을 처음 접한 사람이 이해한 바를 바탕으로 작성되는 것으로, 틀린 부분이 있다면 댓글로 지적해주시면 감사하겠습니다. Sung Kim 님의 유튜브 영상 을 보고 제 식대로 이해한 부분이 많은 점 양해부탁드립니다. 대부분 학습의 시작은 자신이 배우고자 하는 키워드의 정의부터 시작한다. What is Machine Learning? Machine learning : "Field of study that gives computers the ability to learn without being explicitly programmed" -Arthur Samuel explicit programming 이란, 단어 그대로 사람이 프로그래밍한 것을 토대로 출력물을 만드는 것이다. Arthur Sa..