Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kennethanceyer/fastcampus-mlops-cd

An example template of MNIST pytorch training deployment automation
https://github.com/kennethanceyer/fastcampus-mlops-cd

Last synced: about 6 hours ago
JSON representation

An example template of MNIST pytorch training deployment automation

Awesome Lists containing this project

README

        


FastCampus MLOps CD

## 소개

이 레포지토리는 CD(Continuous Deployment) 구성의 이해를 돕기 위해 만들어졌습니다. 폴더 내의 구조는 다음과 같습니다.

```plaintext
fastcampus-mlops-cd/
├── Dockerfile
├── LICENSE
├── README.md
├── assets
│   └── logo.png
├── requirements.txt
└── trainer.py
```

## 설치

```bash
pip3 install -r requirements.txt
```

## 실행

```bash
docker build \
-t fastcampus-mlops-cd:latest
docker run fastcampus-mlops-cd:latest
```