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
- Computer Architecture
- ML
- Got
- llm을 활용 단어장 앱 개발일지
- Widget
- MDP
- system hacking
- FastAPI
- PCA
- BFS
- Kaggle
- C++
- rao
- 백준
- Image Processing
- DART
- pytorch
- study book
- Flutter
- Dreamhack
- BOF
- MATLAB
- Stream
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
- 영상처리
- bloc
- BAEKJOON
- Algorithm
- 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