File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,11 @@ jobs:
59
59
with :
60
60
repository : ggerganov/llama.cpp
61
61
path : llama.cpp
62
- run : pip install llama.cpp/requirements/requirements-convert-hf-to-gguf.txt
63
- run : huggingface-cli huggingface-cli download gpt2 model.safetensors tokenizer.json tokenizer_config.json vocab.json config.json merges.txt --local-dir hf_gpt2
64
- run : mkdir -p ${{ github.workspace }}/test_data
65
- run : python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
62
+ run : |
63
+ pip install llama.cpp/requirements/requirements-convert-hf-to-gguf.txt
64
+ huggingface-cli huggingface-cli download gpt2 model.safetensors tokenizer.json tokenizer_config.json vocab.json config.json merges.txt --local-dir hf_gpt2
65
+ mkdir -p ${{ github.workspace }}/test_data
66
+ python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
66
67
67
68
- name : Run E2E tests
68
69
run : ${{ github.workspace }}/binaries/llama_cpp_e2e_tests
You can’t perform that action at this time.
0 commit comments