Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ML
- Widget
- MATLAB
- system hacking
- pytorch
- Got
- 영상처리
- Dreamhack
- BOF
- Stream
- BAEKJOON
- DART
- FastAPI
- Algorithm
- Flutter
- C++
- Image Processing
- bloc
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
- 백준
- rao
- Kaggle
- MDP
- Computer Architecture
- PCA
- BFS
- llm을 활용 단어장 앱 개발일지
- study book
- fastapi를 사용한 파이썬 웹 개발
- ARM
Archives
- Today
- Total
목록DevOps/Docker (1)
Bull

# 사용할 베이스 이미지 FROM pytorch/pytorch:latest # PyTorch 및 Jupyter 설치 RUN conda install pytorch RUN conda install torchvision RUN conda install jupyter RUN apt-get update RUN conda install cudatoolkit=11.8 cudnn -c pytorch # 작업 디렉터리 설정 WORKDIR /workspace # Jupyter Notebook 설정 (옵션: 비밀번호 설정 등) # 이 예제에서는 비밀번호 없이 모든 IP에서 접속 가능하게 설정 RUN jupyter notebook --generate-config --allow-root RUN echo "c.NotebookA..
DevOps/Docker
2024. 4. 13. 08:27