본문 바로가기

AI/Tensorflow with Python3

텐서플로우(Tensorflow) 설치 편 / MAC OS - 1편 저는 Tensorflow를 사용합니다. 그 외에는 PyTorch을 많이 사용하신다고 하는데... 음 일단 어떤 분이 2개를 비교하신 글이 있더라구요. 공유해 드립니다. TensorFlow and PyTorch are two of the more popular frameworks out there for deep learning. There are people who prefer TensorFlow for support in terms of deployment, and there are those who prefer PyTorch because of the flexibility in model building and training without the difficulties faced in using T.. 2020. 1. 28.
초보 개발자를 위한 자료 정리 001 - API란? API - Application Programming Interface 응용 프로그램 프로그래밍 인터페이스 3가지의 단어를 쪼개서 살펴보면 1. 응용 프로그램 2. 프로그래밍 3. 인터페이스 일단 저는 UI ( User Interface )에 대해 말하고자 합니다. UI 란? 사용자와 사용자가 사용할 대상을 연결해주는 것을 의미합니다. 여기서 '사용자가 사용할 대상'이라는 것은 Software / Hardware 등 모든 것을 포함합니다. 그렇다면 API 란 어떻게 볼 수 있을까요? Application Programming Interface = 프로그래밍((Programming))으로 하나의 프로그램((Application))에서 다른 프로그램((Application))으로 연결시켜주는 연결고리((In.. 2020. 1. 6.
맥에 파이썬 설치하기 ( Python for Mac ) 맥은 원래 자체적으로 python 을 가지고 있습니다. 그래서 Terminal에 python -V와 같이 검색을 하면 ( python 이라고 그냥 검색하셔도 됩니다. ) 이미 설치가 되어있다는 것을 알 수 있습니다. 하지만, python 2.7은 개발 환경에 알맞지 않기 때문에 다음과 같은 경고문을 볼 수 있습니다. WARNING: Python 2.7 is not recommended. This version is included in macOS for compatibility with legacy software. Future versions of macOS will not include Python 2.7. Instead, it is recommended that you transition to us.. 2019. 12. 23.