Coding, Filming, and Nothing
article thumbnail
[Docker] 서버 Docker, miniconda 개발 환경 세팅
개발새발/개발 셋업 2023. 1. 18. 21:44

이전에 있던 연구실은 그냥 linux 서버였고 개인이 알아서 개인 계정에서 콘다 환경을 만들어서 사용했었는데, 지금 연구하는 곳은 도커를 사용한다. 도커 레이어가 한 장 더 추가된 것만 다를테니 콘다를 쓸 도커로 만들어야겠다 싶어서 그 김에 기록한다. *이 글에서 사용한 계정이 sudo 계정이여서, 명령어에 딱히 sudo를 붙이지 않았는데 접속한 계정에 따라서 sudo docker ... 식으로 사용해야 할 수 있다. 도커 기여엉 Container: Process, a running instance of an application Image: Program, a static file that defines the behavior of the container 1. 도커 허브에서 사용할 miniconda3..

article thumbnail
[Conda] 컴퓨터비전을 위한 토치환경 셋업
개발새발/개발 셋업 2023. 1. 18. 21:39

의료영상 처리, 컴퓨터 비전을 위한 모델을 학습시키고 다룰 때를 위해 구성 해놓은 가상환경 설정 명령어 모음입니다. 주로 medical image segmentation, U-Net based models, ViT models, Albumentation 등을 다루는데 사용되었습니다. 최초 'conda' 환경 세팅 명령어 conda upgrade conda —all -y conda update -n base conda -y conda update —all conda update -n base -c defaults conda -y python -m pip install —upgrade pip 'Vision' 환경 세팅 명령어 conda create -n Vision -y conda update conda -..