전체 글

전체 글

    [Chapter 2] 3. 최적화

    보호되어 있는 글입니다.

    [Ubuntu] / [oh-my-zsh] 터미널의 테마를 지정해보자

    지인의 추천으로 터미널의 테마를 지정할 수 있고, 자동 완성 기능이 편한 oh-my-zsh 를 추천받게 되었습니다. https://github.com/ohmyzsh/ohmyzsh GitHub - ohmyzsh/ohmyzsh: 🙃 A delightful community-driven (with 1900+ contributors) framework for managing your zsh configu 🙃 A delightful community-driven (with 1900+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homeb..

    [Python] / [VSCode] Ubuntu에서 설치 및 SSH를 사용하여 서버 원격 접속

    Ubuntu VSCode 설치 1. apt 업데이트 $ sudo apt-get update 2. curl 설치 $ sudo apt-get install curl 3. Microsoft GPG키 다운 $ sudo sh -c 'curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.gpg' 4. 저장소 추가 $ sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' 5. 패키지 목록 가져오기 $ su..

    [Chapter 2] 2. 확률과 통계

    보호되어 있는 글입니다.

    [Ubuntu] 방화벽 UFW 포트 관리

    보호되어 있는 글입니다.

    [Pytorch] Mixed Precision Training

    Pytorch에서 공식적으로 Mixed Precision Training을 지원 Automatic Mixed Precision(AMP) torch.cuda.amp.autocast() 상세 내용은 다음 블로그에서 확인가능 합니다. (정리가 엄청 깔끔하셔요) https://bo-10000.tistory.com/32 [딥러닝 논문리뷰] Mixed Precision Training (ICLR 2018) NVIDIA와 Baidu에서 연구하고 ICLR 2018에 발표된 논문인 Mixed Precision Training을 바탕으로 정리한 글입니다. 딥러닝 학습 과정에서 Mixed Precision을 이용하여 GPU resource를 효율적으로 사용할 수 있는.. bo-10000.tistory.com

    [Python] / [Jupyter] 주피터 노트북 이미지 삽입 방법

    1. 셀에 삽입 방법 Image("/파일 DIR/파일.png") 2. MarkDwon에 삽입 ![이미지이름](파일경로/파일.png)

    [Ubuntu] 주피터 노트북(Jupyter notebook) 실행 후 원격 접속

    만약 주피터 노트북이 설치가 안되어 있으면 가상환경 생성 후 설치 :~$ conda create -n [가상환경이름] python=[원하는버전] :~$ conda activate [가상환경이름] :~$ conda install jupyter notebook 먼저 우분투에서 jupyter notebook이 실행가능한지 확인 :~$ jupyter notebook Ctrl + z 로 터미널 종료 config 파일 생성 (/home/[user]/.jupyter 디렉토리 안에 생성됩니다.) :~$ jupyter notebook --generate-config 주피터 서버 비밀번호 생성 :~$ Ipython ln[1]: from notebook.auth import password ln[2]: passwd() En..