Spaces:
Paused
Paused
File size: 291 Bytes
9281d61 e3ccd16 41fcb94 b49169d 9281d61 41fcb94 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
export TRANSFORMERS_CACHE=/root/.cache
export CMAKE_ARGS="-DLLAMA_CUBLAS=on"
export FORCE_CMAKE=1
export PIP_ROOT_USER_ACTION=ignore
exec pip install --timeout 100 -r requirements.txt
exec python ./ingest.py --device_type cuda
exec python ./run_localGPT.py --device_type cuda
|