ptrdvn commited on
Commit
18dc5ba
1 Parent(s): 1149b1d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -22,10 +22,10 @@ If you would like a nice easy GUI and have >64GB of RAM, then you could also run
22
  ```bash
23
  cd llama.cpp
24
 
25
- ./convert.py --outfile Karasu-Mixtral-8x22B-v0.1-q3_k_m --outtype f16 /workspace/llm_training/axolotl/mixtral_8x22B_training/merged_model_multiling
26
 
27
- ./quantize /workspace/Karasu-Mixtral-8x22B-v0.1.gguf /workspace/Karasu-Mixtral-8x22B-v0.1_q3_k_m.gguf Q3_K_M
28
 
29
- ./gguf-split --split --split-max-size 5G /workspace/Karasu-Mixtral-8x22B-v0.1_q3_k_m.gguf /workspace/somewhere-sensible
30
 
31
  ```
 
22
  ```bash
23
  cd llama.cpp
24
 
25
+ ./convert-hf-to-gguf.py --outfile /workspace/Karasu-Mixtral-8x22B-v0.1.gguf --outtype f16 /workspace/llm_training/axolotl/mixtral_8x22B_training/merged_model_multiling
26
 
27
+ ./quantize /workspace/Karasu-Mixtral-8x22B-v0.1.gguf /workspace/Karasu-Mixtral-8x22B-v0.1-Q3_K_M.gguf Q3_K_M
28
 
29
+ ./gguf-split --split --split-max-tensors 128 /workspace/Karasu-Mixtral-8x22B-v0.1-Q3_K_M.gguf /workspace/split_gguf_q3km/Karasu-Mixtral-8x22B-v0.1-Q3_K_M
30
 
31
  ```