ego-ml commited on
Commit
9cc8838
·
1 Parent(s): 93901a4

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # CodeLlama-7b-Python gguf
2
+
3
+ Original Meta `CodeLlama-7b-Python` model converted with [python3 convert.py](https://github.com/ggerganov/llama.cpp) to `gguf` and
4
+ `CodeLlama-7b-Python/ggml-model-f32.gguf` and splitted with [gguf-split](https://github.com/ggerganov/llama.cpp) to smaller size chunks up to `split-max-tensors 32`.
5
+
6
+ ```bash
7
+ python3 convert.py ../codellama/CodeLlama-7b-Python
8
+
9
+ ./gguf-split --split --split-max-tensors 32 ./models/CodeLlama-7b-Python/ggml-model-f32.gguf ./models/CodeLlama-7b-Python/ggml-model-f32
10
+ ```