Fix fetch_server_test_models.py (avoid conv trap)
This commit is contained in:
parent
045edd1d7e
commit
2ceabee0f8
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ if __name__ == '__main__':
|
|||
logging.warning(f'Skipping model at {m.hf_repo} / {m.hf_file} because it is a split file')
|
||||
continue
|
||||
logging.info(f'Using llama-cli to ensure model {m.hf_repo}/{m.hf_file} was fetched')
|
||||
cmd = [cli_path, '-hfr', m.hf_repo, '-hff', m.hf_file, '-n', '1', '-p', 'Hey', '--no-warmup', '--log-disable']
|
||||
cmd = [cli_path, '-hfr', m.hf_repo, '-hff', m.hf_file, '-n', '1', '-p', 'Hey', '--no-warmup', '--log-disable', '-no-cnv']
|
||||
if m.hf_file != 'tinyllamas/stories260K.gguf' and not m.hf_file.startswith('Mistral-Nemo'):
|
||||
cmd.append('-fa')
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue