mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-15 02:37:55 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
21 lines
No EOL
504 B
Bash
21 lines
No EOL
504 B
Bash
#!/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-Base-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-Base-3B-v1-f16.bin
|
|
|
|
|
|
# done!
|
|
echo "Done." |