ababa831 / sagemaker_mlops_demo

Demo codes of SageMaker API (with a customized docker image) and MLOps
0 stars 0 forks source link

sagemaker_mlops_demo

CircleCI Coverage Status Python 3.6

カスタムアルゴリズムによるSageMaker API構築デモコード. 及び,そのMLOpsコード.

Structure

.
├── README.md
└── custom_algorithms  # カスタムアルゴリズムAPIコード等
    └── kaggle_titanic  # Kaggleのタイタニックを題材にした分類API
        ├── logistic_regression  # ロジスティック回帰版
        │   ├── container
        │   │   └── api  # Flaskアプリケーションと関連ファイル(エントリポイント, nginx, wsgi等)
        │   │       ├── apps  # ML処理パイプライン(リソース,前処理,モデル,評価,推論等)
        │   │       │   ├── experiments  # 実験用notebook
        │   │       │   └── tests/ apps内コード単体テスト
        │   │       └── tests/ Flask アプリケーションテスト用(結合テスト)
        │   └── tests/ APIの動作確認用
        └── pyproject.toml  # Poetryのpyproject.tomlで依存関係の管理を行う

NOTE

TODO: Intruduction