Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.27 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.27 KB

Sequence Labeling from Scratch

Source Code Check codecov

Sequence Labeling from Scratchの書籍で使用している実装コードです。サポートページを兼ねていますので、誤記等がありましたら本リポジトリのIssueでご連絡ください。

Install

本リポジトリはpoetryを使用して依存ライブラリを管理しています。git cloneでソースコードをダウンロードした後に、次のコマンドで依存ライブラリをインストールしてください。詳細は、poetryのドキュメントを参照ください。

poetry install

Test

本リポジトリのテストを実行するには次のコマンドを実行してください。

lint

poetry run task black
poetry run task mypy
poetry run task flake8
poetry run task isort

test

poetry run task test