littlemex / inference-samples

inference samples
3 stars 0 forks source link

モデルサーバーの追加 #8

Closed littlemex closed 1 year ago

littlemex commented 2 years ago

Model Serverを追加した

フィードバックで得たものはIssue化する。 一旦通しでdockerが動いたこのバージョンでv0.0.2のタグを切る。

使い方

docker buildx bake base && docker buildx bake trace && docker  buildx bake model
./run-model-server.sh

私は[MASK]へ行く、という感じでmasked_indexで指定した部分がマスクされる。

# リクエストのテスト
curl -X 'POST' \
  'http://localhost/inferences' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "text": "私は東京へ行く",
  "mask_index": 3
}'

app/main.pyがmodel serverのコード

.
├── app
│   ├── main.py
│   ├── requirements.txt
│   └── run.sh