2023-05-14 03:44:36 +00:00
|
|
|
// clang-format off
|
2023-05-11 14:12:08 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# cd to scripts dir
|
|
|
|
cd `dirname $0`
|
|
|
|
|
|
|
|
# download model to models dir
|
|
|
|
echo "Downloading model"
|
|
|
|
python ./convert_gptneox_to_ggml.py togethercomputer/RedPajama-INCITE-Chat-3B-v1 ../models/pythia
|
|
|
|
|
|
|
|
# remove temp cache dir
|
|
|
|
echo "Removing temp cache dir"
|
|
|
|
rm -r ../models/pythia-cache
|
|
|
|
|
|
|
|
# quantize model
|
|
|
|
echo "Quantizing model (q4_0)"
|
|
|
|
cd ../../..
|
|
|
|
python ./examples/redpajama/scripts/quantize-gptneox.py ./examples/redpajama/models/pythia/ggml-RedPajama-INCITE-Chat-3B-v1-f16.bin
|
|
|
|
|
|
|
|
|
|
|
|
# done!
|
|
|
|
echo "Done."
|