File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ try {
179
179
# We are trying to extract model details from the GGUF file.
180
180
# https://github.com/ggerganov/ggml/blob/master/docs/gguf.md#llm
181
181
# TODO: Find a robust way to resolve this values.
182
- $modelData = Invoke-Expression " python ${llamaCppPath} \gguf-py\scripts\gguf_dump.py --no-tensors `" ${model} `" "
182
+ $modelData = Invoke-Expression " python ${llamaCppPath} \gguf-py\gguf\ scripts\gguf_dump.py --no-tensors `" ${model} `" "
183
183
$modelContextLength = [Int ]($modelData | Select-String - Pattern ' \bcontext_length = (\d+)\b' ).Matches.Groups[1 ].Value
184
184
$modelHeadCount = [Int ]($modelData | Select-String - Pattern ' \bhead_count = (\d+)\b' ).Matches.Groups[1 ].Value
185
185
$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