Makefile 1.76 KB
Newer Older
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
1
gen-server:
Nicolas Patry's avatar
Nicolas Patry committed
2
3
	# Compile protos
	pip install grpcio-tools==1.49.1 --no-cache-dir
4
5
6
7
	mkdir text_generation/pb || true
	python -m grpc_tools.protoc -I../proto --python_out=text_generation/pb --grpc_python_out=text_generation/pb ../proto/generate.proto
	find text_generation/pb/ -type f -name "*.py" -print0 -exec sed -i -e 's/^\(import.*pb2\)/from . \1/g' {} \;
	touch text_generation/pb/__init__.py
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
8

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
9
10
11
install-transformers:
	# Install specific version of transformers
	rm transformers || true
12
13
14
15
16
	rm transformers-7302a24535e8dc5637ea5b4e4572fc971d404098 || true
	curl -L -O https://github.com/OlivierDehaene/transformers/archive/7302a24535e8dc5637ea5b4e4572fc971d404098.zip
	unzip 7302a24535e8dc5637ea5b4e4572fc971d404098.zip
	rm 7302a24535e8dc5637ea5b4e4572fc971d404098.zip
	mv transformers-7302a24535e8dc5637ea5b4e4572fc971d404098 transformers
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
17
	cd transformers && python setup.py install
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
18

Nicolas Patry's avatar
Nicolas Patry committed
19
20
21
22
23
24
25
26
27
28
29
install-safetensors:
	# Install specific version of safetensors
	pip install setuptools_rust
	rm safetensors || true
	rm safetensors-634deccbcbad5eaf417935281f8b3be7ebca69c5 || true
	curl -L -O https://github.com/huggingface/safetensors/archive/634deccbcbad5eaf417935281f8b3be7ebca69c5.zip
	unzip 634deccbcbad5eaf417935281f8b3be7ebca69c5.zip
	rm 634deccbcbad5eaf417935281f8b3be7ebca69c5.zip
	mv safetensors-634deccbcbad5eaf417935281f8b3be7ebca69c5 safetensors
	cd safetensors/bindings/python && python setup.py develop

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
30
31
32
install-torch:
	# Install specific version of torch
	pip install torch --extra-index-url https://download.pytorch.org/whl/cu116 --no-cache-dir
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
33

Nicolas Patry's avatar
Nicolas Patry committed
34
35
36
install: gen-server install-torch install-transformers install-safetensors
	pip install pip --upgrade
	pip install -e . --no-cache-dir
Olivier Dehaene's avatar
Init  
Olivier Dehaene committed
37

Nicolas Patry's avatar
Nicolas Patry committed
38
run-dev:
39
	python -m torch.distributed.run --nproc_per_node=2 text_generation/cli.py serve bigscience/bloom-560m --sharded