Makefile 468 Bytes
Newer Older
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
install-server:
	cd server && make pip-install

install-router:
	cd router && cargo install --path .

install-launcher:
	cd launcher && cargo install --path .

install:
	make install-server
	make install-router
	make install-launcher

run-bloom-560m:
	text-generation-launcher --model-name bigscience/bloom-560m --shard-directory /tmp/models --num-shard 2

run-bloom:
	text-generation-launcher --model-name bigscience/bloom --shard-directory /tmp/models --num-shard 8