File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ try {
126
126
# We are trying to extract model details from the GGUF file.
127
127
# https://github.com/ggerganov/ggml/blob/master/docs/gguf.md#llm
128
128
# TODO: Find a robust way to resolve this values.
129
- $modelData = Invoke-Expression " python ${llamaCppPath} \gguf-py\scripts\gguf-dump .py --no-tensors `" ${model} `" "
129
+ $modelData = Invoke-Expression " python ${llamaCppPath} \gguf-py\scripts\gguf_dump .py --no-tensors `" ${model} `" "
130
130
$modelContextLength = [Int ]($modelData | Select-String - Pattern ' \bcontext_length = (\d+)\b' ).Matches.Groups[1 ].Value
131
131
$modelHeadCount = [Int ]($modelData | Select-String - Pattern ' \bhead_count = (\d+)\b' ).Matches.Groups[1 ].Value
132
132
$modelBlockCount = [Int ]($modelData | Select-String - Pattern ' \bblock_count = (\d+)\b' ).Matches.Groups[1 ].Value
You can’t perform that action at this time.
0 commit comments