tabby/experimental/eval/docker-compose.yaml
Meng Zhang bed723fced
feat: add python eval script (#266)
* feat: add python eval script

* update

* add local script

* move eval script

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* add README
2023-07-11 09:53:04 +08:00

22 lines
389 B
YAML

version: '3.5'
services:
scheduler:
image: tabbyml/tabby
platform: linux/amd64
command: scheduler --now
volumes:
- "$PWD/tabby:/data"
tabby:
depends_on:
- scheduler
restart: always
image: tabbyml/tabby
platform: linux/amd64
command: serve --model TabbyML/T5P-220M
ports:
- "8080:8080"
volumes:
- "$PWD/tabby:/data"