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-ci

An example template of XOR pytorch serving continuous integration
https://github.com/kennethanceyer/fastcampus-mlops-ci

Last synced: about 6 hours ago
JSON representation

An example template of XOR pytorch serving continuous integration

Awesome Lists containing this project

README

        


FastCampus MLOps CI

## 소개

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

```plaintext
fastcampus-mlops-ci/
├── README.md
├── app.py
├── assets
│   └── logo.png
├── ml_models
│   ├── __init__.py
│   └── xor.py
├── models
│   ├── __init__.py
│   └── xor.py
├── requirements.txt
├── tests
│   ├── __init__.py
│   ├── conftest.py
│   └── test_app.py
├── trainer.py
└── xor_model.pth
```

## 설치

```bash
pip3 install -r requirements.txt
pip3 install -q black isort mypy pytest pytest-cov
```

## 테스트

```bash
pytest tests/
```