Skip to content

Instantly share code, notes, and snippets.

@crasm
crasm / gguf-merge.sh
Last active September 10, 2023 21:47
Shell script for merging TheBloke's .gguf-split model files
View gguf-merge.sh
#!/bin/sh
log() {
format="$1"; shift
# shellcheck disable=SC2059
>&2 printf "$format\n" "$@"
}
usage() {
>&2 cat <<EOF