본문 바로가기

분류 전체보기195

jupyter server 띄우기 remote 접근 > jupyter notebook --no-browser --port=8888 --ip=xxx.xxx.xxx.xxx 2024. 4. 22.
python SSLerror "certificate verify failed: unable to get local issuer certificate" "ConnectionError: Couldn't reach '~~~~~' on the Hub (SSLError)" huggingface 쓰면서 조우한 error인데 huggingface에만 국한된건 아니고 urllib 나 requests 등 https 통신 할때 발생하는 SSLerror 이다. 내 환경은 우분투 였고 https://stackoverflow.com/questions/10667960/python-requests-throwing-sslerror 이곳 통해 해결 # debian os.environ['REQUESTS_CA_BUNDLE'] = os.path.join( '/etc/.. 2023. 10. 27.
바람의 숲 김철광, 삼프로 강의 요약 https://youtu.be/ObEGX2MMTTM *투자 스타일 배당할인 모형 1) 맥쿼리 인프라 서울, 춘천 고속도로를 운영하는 회사 2) 한국 쉘 석유 배당주 투자 성공 but 2008년 급락 후 급등 시즌이 있었는데, 이전 배당주 투자로 성공했던경험으로 급락주 투자를 하지 못했음. 주변 동료들은 급등을 겪으며 자산이 레벨업되었으나 본인은 그러지 못함 그 이후 투자스타일이 변함 1)포트폴리오보험전략 95%는 맥쿼리인프라와 같이 고배당주에 투자하고 5%주식은 초고위험 주식을 사서 초가수익을 내자는 전략 -> BW/CB 투자 BW(Bond with Warrant, 신주인수권부사채) 신주를 살수있는 권리(인수권, warrant)가 붙은 사채 - 약정된 기간이 지나면 약정된 가격으로 약정된 수량의 신주를 .. 2023. 5. 6.
torch-scatter설치 $ python -c "import torch; print(torch.__version__)" >>> 1.8.1 $ python -c "import torch; print(torch.version.cuda)" >>> 10.1 pip install torch-scatter==2.0.8 -f https://data.pyg.org/whl/torch-1.8.1+cu101.html 자신의 torch, cuda 버전에 맞는 torch-scatter설치 2022. 6. 17.