forked from huggingface/text-generation-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
37 lines (25 loc) · 905 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
install-server:
cd server && make install
install-router:
cd router && cargo install --path .
install-launcher:
cd launcher && cargo install --path .
install: install-server install-router install-launcher
server-dev:
cd server && make run-dev
router-dev:
cd router && cargo run
integration-tests: install-router install-launcher
cargo test
python-tests:
cd server && HF_HUB_ENABLE_HF_TRANSFER=1 pytest tests
run-bloom-560m:
text-generation-launcher --model-id bigscience/bloom-560m --num-shard 2
run-bloom-560m-quantize:
text-generation-launcher --model-id bigscience/bloom-560m --num-shard 2 --quantize
download-bloom:
HF_HUB_ENABLE_HF_TRANSFER=1 text-generation-server download-weights bigscience/bloom
run-bloom:
text-generation-launcher --model-id bigscience/bloom --num-shard 8
run-bloom-quantize:
text-generation-launcher --model-id bigscience/bloom --num-shard 8 --quantize