Ordinary existence

engineer 감각이 있는 Data researcher

sun about me

Programming/python 3

window PyTorch 설치하기

PyTorch - 페이스북 인공지능 연구팀에서 개발한 파이썬(Python) 프로그래밍 언어 기반의 딥러닝 프레임워크 [ 출처 : PyTorch 공식 홈페이지 설치방법 ] - Start Locally Documentaiton 링크 : [ https://pytorch.org/get-started/locally/ ] PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment. pytorch.org 지금 내 pc 환경은 window에서 pip 환경으로 구성되어져 있음으로, pip 환경에서 pytorch를 설정방법으로 정리하였다! - os : wi..

Programming/python 2021.09.02

python Error:Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio" 해결하기

pip install error 가 나타났다 이번 문제는 Microsoft Visual C++ 빌드도구를 설치하는 게,, 핵심 error 1 ) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ error : Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio" visualstudio.microsoft.com/ko/downloads/ Windows 및 Mac용 Visual Studio 2019 다운로드 Visual Studio Community, Professional, Enterprise를 다운로드하세요. 지금 Visual Studio IDE, Code 또는..

Programming/python 2021.05.12

python - TypeError: unhashable type: 'list'

set 함수를 이용해서 리스트의 차집합을 구하고자 하였다! set 함수에서는 immutable(순서가 변경이 되지 않는) type를 필요로 하기 때문에, type을 먼저 확인한다. 이번 문제는 type을 확인해봤을 때, list로 type 문제는 없었다. 두 번째로 확인해봐야할 것은, list 안에 요소들이 list 타입으로 이루어져 있나 확인해봐야한다. set 함수는 list 안에 중복되는 요소를 제거하는 함수로, list 안의 요소가 list로 구성되었을때, unhashable type 이라는 오류를 발생한다. 따라서, list의 몇번째 요소의 list를 비교하고 싶은 지 요소 위치를 선정하여 오류를 해결할 수 있다.

Programming/python 2021.03.16