티스토리 뷰
728x90
1. 허깅페이스에서 git-lfs 를 통해 원하는 ai model을 원하는 경로로 다운로드
2. docker를 설치
3. Dockerfile을 작성
# Use an official Pytorch runtime as the base image
FROM pytorch/pytorch:latest
# Set the working directory in the container
WORKDIR /app
# Install any needed packages specified in requirements.txt
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Run the Python script when the container launches
CMD ["python", "script.py"]
4. requirements.txt를 작성
5. script.py를 작성
6. docker 명령을 통해 image를 생성하고 실행
#create docker image
$sudo docker build -t image_name .
#docker run
$sudo docker run --gpus all -v $(pwd):/app image_name
--gpus all 플래그를 통해 gpu 사용
누군가에게는 도움이 되길 바랍니다.
'기술과 IT' 카테고리의 다른 글
[개발] celery-python 내장 함수 설명 (0) | 2023.08.22 |
---|---|
Django Celery Setting 기록 (0) | 2023.08.21 |
MS OneDrive 공유 적용 예제 (0) | 2023.07.15 |
AWS 람다 소개 (0) | 2023.07.06 |
Python OCR 라이브러리 종류와 장단점 (0) | 2023.07.05 |