We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38341e2 commit 186f658Copy full SHA for 186f658
convert-llama-ggmlv3-to-gguf.py
@@ -304,9 +304,10 @@ def main():
304
print(f'* Using config: {cfg}')
305
print('\n=== WARNING === Be aware that this conversion script is best-effort. Use a native GGUF model if possible. === WARNING ===\n')
306
vocab_override = None
307
- metadata_override = None
+ params_override = None
308
if cfg.model_metadata_dir is not None:
309
(params_override, vocab_override) = handle_metadata(cfg)
310
+ print('!! Note: When overriding params the --gqa, --eps and --context-length options are ignored.')
311
print(f'* Overriding params: {params_override}')
312
print(f'* Overriding vocab: {vocab_override}')
313
else:
0 commit comments