Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 795 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 795 Bytes

Python

Getting Started(2022)

mkdir $PROJECT_NAME
cd $PROJECT_NAME
poetry config virtualenvs.in-project true --local
poetry init --python ">=3.9,<3.11"  # 詳しくないがScipyの制約
poetry install
code .
# Select interpreter by `Cmd + Shift + P`

References

Python 3.7とVisual Studio Codeで型チェックが捗る内作Pythonアプリケーション開発環境の構築

Pickle

  • 要するに、訓練済みモデル(例えばclfクラスとか)はシリアライズして保存することが多いらしい。
  • ライブラリはいくつかある。Pickleは何も機械学習に特化したライブラリでは全然ない。

References

https://blog.amedama.jp/entry/2018/05/08/033909