めも

主にUnity

2022-01-01から1年間の記事一覧

Testing async code in python

非同期でpytestを使う場合、pytest-asyncioを使うことになるが、やや使いにくいのでunittestのIsolatedAsyncioTestCaseを使った。 実装例 from asyncio import sleep from unittest import IsolatedAsyncioTestCase # test case を得るために非同期関数を呼…

Python mlflow with SQLite導入手順(venv)@VSCode

見様見真似でやってみました。 1.Mlflowをインストール pip install mlflow 2.VSCode taskを作成 { "type": "shell", "label": "mytask.mlflowui", "command": "start http://127.0.0.1:5000\r\n& {myvenv}/Scripts/Activate.ps1 \r\nmlflow server --backen…